Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Cond_IOVDescription_h
0002 #define Cond_IOVDescription_h
0003 
0004 #include "CondFormats/Serialization/interface/Serializable.h"
0005 
0006 namespace cond {
0007 
0008   class IOVDescription {
0009   public:
0010     IOVDescription() {}
0011     virtual ~IOVDescription() {}
0012     virtual IOVDescription* clone() const { return new IOVDescription(*this); }
0013 
0014   private:
0015     COND_SERIALIZABLE;
0016   };
0017 
0018 }  // namespace cond
0019 
0020 #endif