00001 // ===================================================================== 00002 // $Id: TReadoutList.hh,v 1.2 2003/07/30 16:20:11 goiwai Exp $ 00003 // $Name: CLDAQ-1-07-00 $ 00004 // 00005 // $Log: TReadoutList.hh,v $ 00006 // Revision 1.2 2003/07/30 16:20:11 goiwai 00007 // ファイルにコミットログをつけることにしました. 00008 // 00009 // ===================================================================== 00010 #ifndef __TREADOUTLIST_HH 00011 #define __TREADOUTLIST_HH 00012 00013 #include "Tglobals.h" 00014 #include "TReadoutIdentification.hh" 00015 #include "TReadoutSectionList.hh" 00016 00017 class TDataRecord; 00018 00019 class TReadoutList 00020 : public TReadoutIdentification, public TReadoutSectionList 00021 { 00022 00023 public: 00024 TReadoutList( const Tstring& id = TunknownID ); 00025 TReadoutList( const TReadoutList& right ); 00026 ~TReadoutList(); 00027 00028 public: 00029 const TReadoutList& operator=( const TReadoutList& right ); 00030 Tbool operator==( const TReadoutList& right ) const; 00031 Tbool operator!=( const TReadoutList& right ) const; 00032 00033 public: 00034 TDataRecord Read(); 00035 00036 }; 00037 00038 #endif