Warning, file /include/root/ROOT/Browsable/TKeyItem.hxx was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef ROOT7_Browsable_TKeyItem
0010 #define ROOT7_Browsable_TKeyItem
0011
0012 #include <ROOT/Browsable/RItem.hxx>
0013
0014 class TDirectory;
0015
0016 namespace ROOT {
0017 namespace Browsable {
0018
0019
0020
0021
0022
0023
0024 class TKeyItem : public RItem {
0025 std::string className;
0026
0027 public:
0028
0029 TKeyItem() = default;
0030
0031 TKeyItem(const std::string &_name, int _nchilds) : RItem(_name, _nchilds) {}
0032
0033
0034 virtual ~TKeyItem() = default;
0035
0036 void SetClassName(const std::string &_className) { className = _className; }
0037 };
0038
0039 }
0040 }
0041
0042
0043 #endif