00001 // ===================================================================== 00002 // $Id: TSoftwareModule.hh,v 1.1.1.1 2003/06/27 02:56:41 goiwai Exp $ 00003 // $Name: CLDAQ-1-06-02 $ 00004 // ===================================================================== 00005 #ifndef __TSOFTWAREMODULE_HH 00006 #define __TSOFTWAREMODULE_HH 00007 00008 #include "Tglobals.h" 00009 #include "TModule.hh" 00010 00011 class TDataSegment; 00012 class TDataElement; 00013 00014 class TSoftwareModule 00015 : public TModule 00016 { 00017 00018 public: 00019 TSoftwareModule( Tint nchannel ); 00020 TSoftwareModule( const TSoftwareModule& right ); 00021 00022 protected: 00023 virtual ~TSoftwareModule(); 00024 00025 public: 00026 virtual const TSoftwareModule& operator=( const TSoftwareModule& right ); 00027 virtual Tbool operator==( const TSoftwareModule& right ) const; 00028 virtual Tbool operator!=( const TSoftwareModule& right ) const; 00029 00030 }; 00031 00032 #endif