00001 // ===================================================================== 00002 // $Id: TRunInformationModuleCommand.hh,v 1.2 2003/07/30 16:17:32 goiwai Exp $ 00003 // $Name: CLDAQ-1-08-02 $ 00004 // 00005 // $Log: TRunInformationModuleCommand.hh,v $ 00006 // Revision 1.2 2003/07/30 16:17:32 goiwai 00007 // ファイルにコミットログをつけることにしました. 00008 // 00009 // ===================================================================== 00010 #ifndef __TRUNINFORMATIONMODULECOMMAND_HH 00011 #define __TRUNINFORMATIONMODULECOMMAND_HH 00012 00013 #include "Tglobals.h" 00014 00015 class TSoftwareRunInformationModule; 00016 00017 class TRunInformationModuleCommand 00018 { 00019 00020 protected: 00021 TSoftwareRunInformationModule* theRunInformationModule; 00022 00023 protected: 00024 TRunInformationModuleCommand( TSoftwareRunInformationModule* module ); 00025 ~TRunInformationModuleCommand(); 00026 00027 public: 00028 const TSoftwareRunInformationModule* GetRunInformationModule() const; 00029 Tvoid SetRunInformationModule( TSoftwareRunInformationModule* module ); 00030 00031 }; 00032 00033 inline const TSoftwareRunInformationModule* TRunInformationModuleCommand::GetRunInformationModule() const 00034 { 00035 return( theRunInformationModule ); 00036 } 00037 00038 inline Tvoid TRunInformationModuleCommand::SetRunInformationModule( TSoftwareRunInformationModule* module ) 00039 { 00040 theRunInformationModule = module; 00041 return; 00042 } 00043 00044 #endif