メインページ   モジュール   名前空間一覧   クラス階層   アルファベット順一覧   構成   ファイル一覧   構成メンバ   ファイルメンバ   関連ページ    

TSoftwareModule.cc

解説を見る。
00001 // =====================================================================
00002 //  $Id: TSoftwareModule.cc,v 1.4 2004/03/07 10:30:31 goiwai Exp $
00003 //  $Name: CLDAQ-1-14-03 $
00004 //  $Log: TSoftwareModule.cc,v $
00005 //  Revision 1.4  2004/03/07 10:30:31  goiwai
00006 //  ROOTに組みこむためのおまじないマクロを埋めこみました。
00007 //  全てにおいて完全に動作するわけではありません。
00008 //
00009 //  Revision 1.3  2003/10/06 17:02:40  goiwai
00010 //  *** empty log message ***
00011 //
00012 //  Revision 1.2  2003/07/30 16:19:11  goiwai
00013 //  ファイルにコミットログをつけることにしました.
00014 //
00015 // =====================================================================
00016 #include "TSoftwareModule.hh"
00017 
00018 TSoftwareModule::TSoftwareModule( Tint nchannel )
00019   : TModule( nchannel )
00020 {;}
00021 
00022 TSoftwareModule::TSoftwareModule( const TSoftwareModule& right )
00023   : TModule( right )
00024 {;}
00025 
00026 TSoftwareModule::~TSoftwareModule()
00027 {;}
00028 
00029 const TSoftwareModule& TSoftwareModule::operator=( const TSoftwareModule& right )
00030 {
00031   *( (TModule*)this ) = *( (TModule*)(&right) );
00032   return *this;
00033 }
00034 
00035 Tbool TSoftwareModule::operator==( const TSoftwareModule& right ) const
00036 {
00037   return *( (TModule*)this ) == *( (TModule*)(&right) );
00038 }
00039 
00040 Tbool TSoftwareModule::operator!=( const TSoftwareModule& right ) const
00041 {
00042   return *( (TModule*)this ) != *( (TModule*)(&right) );
00043 }
00044 
00045 #ifdef __CLDAQ_ROOT_DLL
00046     ClassImp(TSoftwareModule)
00047 #endif


CLDAQ - a Class Library for DataAcQuisition (Version 1.14.3)
Go IWAI -- goiwai at users.sourceforge.jp