00001 // ===================================================================== 00024 // ===================================================================== 00025 #ifndef CLDAQ__TSOFTWAREMODULE_HH 00026 #define CLDAQ__TSOFTWAREMODULE_HH 00027 00028 #include "Tglobals.h" 00029 #include "TModule.hh" 00030 00031 class TDataSegment; 00032 class TDataElement; 00033 00034 00054 class TSoftwareModule 00055 : public TModule 00056 { 00057 00058 public: 00059 TSoftwareModule( Tint nchannel ); 00060 TSoftwareModule( const TSoftwareModule& right ); 00061 00062 protected: 00063 virtual ~TSoftwareModule(); 00064 00065 public: 00066 virtual const TSoftwareModule& operator=( const TSoftwareModule& right ); 00067 virtual Tbool operator==( const TSoftwareModule& right ) const; 00068 virtual Tbool operator!=( const TSoftwareModule& right ) const; 00069 00070 }; 00071 00072 #endif