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