00001 #ifndef CDBROO_OBJECT_R_RDL 00002 #define CDBROO_OBJECT_R_RDL 00003 00004 // File and Version Information: 00005 // $Id: CdbRooObjectR.rdl,v 1.1 2004/12/20 20:16:05 gapon Exp $ 00006 00007 #include "CdbBase/CdbCommon.hh" 00008 00009 #include <TObject.h> 00010 00011 /// A base class for persistent "payload" objects of the current CDB API "technology" 00012 /** 00013 * This is essentially a "marker" interface. It's current design is based on the TObject 00014 * class in order to provide access to the TObject::ClassName() method. 00015 */ 00016 class CdbRooObjectR : public TObject { 00017 00018 public: 00019 00020 /// The destructor 00021 00022 virtual ~CdbRooObjectR( ) { } 00023 00024 ClassDef(CdbRooObjectR,1) 00025 }; 00026 00027 #endif // CDBROO_OBJECT_R_RDL
1.3-rc3