Loading [MathJax]/jax/output/HTML-CSS/config.js
The Gaudi Framework  v28r2p1 (f1a77ff4)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
MetaData.h
Go to the documentation of this file.
1 
2 /*
3  * MetaData.h
4  *
5  * Created on: 20 Jan 2015
6  * Author: Ana Trisovic
7  */
8 
9 #ifndef METADATA_H_
10 #define METADATA_H_
12 #include "DataObject.h"
14 
15 #include <map>
16 #include <string>
17 
18 // Definition of the CLID for this class
19 static const CLID CLID_MetaData = 13507;
20 
21 class MetaData { //: public DataObject {
22 private:
24 public:
25  MetaData();
27  virtual ~MetaData();
29 };
30 
31 #endif /* METADATA_H_ */
std::map< std::string, std::string > getMetaDataMap()
Definition: MetaData.cpp:47
unsigned int CLID
Class ID definition.
Definition: ClassID.h:8
MetaData()
Definition: MetaData.cpp:39
std::map< std::string, std::string > m_metadata
Definition: MetaData.h:23
virtual ~MetaData()
Definition: MetaData.cpp:45