// ============================================================================ // $Id$ // $Name$ // ============================================================================ #ifndef __TREADOUTLIST_HH #define __TREADOUTLIST_HH #include "TGlobals.hh" #include "TReadoutSectionList.hh" class TDataRecord; class TReadoutList : public TReadoutSectionList { private: Tint theID; public: TReadoutList( Tint id = tIDunknown, Tint capacity = tDefaultCapacity ); ~TReadoutList(); Tvoid Print( Tostream& tos = Tstd::Tcout ); TDataRecord* ReadData(); public: inline Tint GetID() const; inline Tvoid SetID( Tint id ); }; inline Tint TReadoutList::GetID() const { return( theID ); } inline Tvoid TReadoutList::SetID( Tint id ) { theID = id; return; } #endif