Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:01:57

0001 #ifndef CondFormats_strKeyMap_h
0002 #define CondFormats_strKeyMap_h
0003 #include "CondFormats/Serialization/interface/Serializable.h"
0004 
0005 #include <map>
0006 class Algob {
0007 public:
0008   Algob() {}
0009   int b;
0010 
0011   COND_SERIALIZABLE;
0012 };
0013 class strKeyMap {
0014 public:
0015   strKeyMap() {}
0016 
0017 private:
0018   std::map<std::string, Algob> m_content;
0019 
0020   COND_SERIALIZABLE;
0021 };
0022 #endif