Diana Software
QTreeInfo.hh
Go to the documentation of this file.
1 #ifndef _Q_TREE_INFO_HH_
2 #define _Q_TREE_INFO_HH_
3 
4 #include <TObject.h>
5 #include <map>
6 #include <string>
7 
8 class QTreeInfo : public TObject {
9  public:
10  QTreeInfo();
11 
12  void PrintVersions();
13  Int_t fType;
14  std::string fSoftwareRevision;
15  std::string fVersionTag;
16  std::map<std::string,std::string> fExtSWVersion;
17 
19 };
20 
21 #endif
std::string fVersionTag
Definition: QTreeInfo.hh:15
void PrintVersions()
Definition: QTreeInfo.cc:14
std::string fSoftwareRevision
Definition: QTreeInfo.hh:14
QTreeInfo()
Definition: QTreeInfo.cc:6
std::map< std::string, std::string > fExtSWVersion
Definition: QTreeInfo.hh:16
ClassDef(QTreeInfo, 4)
Int_t fType
Definition: QTreeInfo.hh:13