00001 // ===================================================================== 00002 // $Id: TReadoutList.hh,v 1.1.1.1 2003/06/27 02:56:42 goiwai Exp $ 00003 // $Name: CLDAQ-1-06-02 $ 00004 // ===================================================================== 00005 #ifndef __TREADOUTLIST_HH 00006 #define __TREADOUTLIST_HH 00007 00008 #include "Tglobals.h" 00009 #include "TReadoutIdentification.hh" 00010 #include "TReadoutSectionList.hh" 00011 00012 class TDataRecord; 00013 00014 class TReadoutList 00015 : public TReadoutIdentification, public TReadoutSectionList 00016 { 00017 00018 public: 00019 TReadoutList( const Tstring& id = TunknownID ); 00020 TReadoutList( const TReadoutList& right ); 00021 ~TReadoutList(); 00022 00023 public: 00024 const TReadoutList& operator=( const TReadoutList& right ); 00025 Tbool operator==( const TReadoutList& right ) const; 00026 Tbool operator!=( const TReadoutList& right ) const; 00027 00028 public: 00029 TDataRecord Read(); 00030 00031 }; 00032 00033 #endif