CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_5_3_9_patch3/src/CondFormats/Calibration/interface/fakeMenu.h

Go to the documentation of this file.
00001 #ifndef CondFormats_fakeMenu_h
00002 #define CondFormats_fakeMenu_h
00003 #include <map>
00004 class Algo{
00005  public:
00006   Algo(){}
00007   int a;
00008 };
00009 class AlgoMap : public std::map<std::string, Algo>{
00010  public:
00011   AlgoMap(){}
00012 };
00013 class fakeMenu{
00014  public:
00015   // constructor
00016   fakeMenu(){}
00017   virtual ~fakeMenu(){}
00018  private:
00019   AlgoMap m_algorithmMap;
00020 };
00021 #endif