// -*- mode: c++ -*- // $Id: BrDbTable.h,v 1.3 2001/11/26 18:36:03 videbaek Exp $ // $Author: videbaek $ // $Date: 2001/11/26 18:36:03 $ // $Copyright: 2000 Brahms Collaboration // #ifndef _BRDBTABLE_HH #define _BRDBTABLE_HH #ifndef ROOT_TObject #include "TObject.h" #endif #ifndef BRAT_BrDbQuery #include "BrDbQuery.h" #endif class BrDbTable : public TObject { private: Int_t fDBID; public: BrDbTable(); virtual ~BrDbTable(void) {}; virtual BrDbQuery* Insert(void) = 0; virtual Int_t GetDBID(void); virtual void SetDBID(Int_t id); ClassDef(BrDbTable,1) // ABC for database table } ; #endif