#ifndef TSeqNoAllocator_hxx_seen #define TSeqNoAllocator_hxx_seen #include #include "Rtypes.h" namespace COMET { class ISeqNoAllocator; }; /// This is the class can be used to supply local or global SEQNOs. class COMET::ISeqNoAllocator { public: ISeqNoAllocator() {} virtual ~ISeqNoAllocator() {}; Int_t GetSeqNo(const std::string& tableName, Int_t requireGlobal = 0, Int_t dbNo = 0) const; }; #endif