Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 12:22:54

0001 #ifndef ITAG_H
0002 #define ITAG_H
0003 
0004 #include <stdexcept>
0005 
0006 #include "OnlineDB/EcalCondDB/interface/IUniqueDBObject.h"
0007 
0008 /**
0009  *   Abstract base class for a tag object
0010  */
0011 class ITag : public IUniqueDBObject {};
0012 
0013 #endif