00001 // ===================================================================== 00021 // ===================================================================== 00022 #ifndef __TRUNINFORMATIONMODULECOMMAND_HH 00023 #define __TRUNINFORMATIONMODULECOMMAND_HH 00024 00025 #include "Tglobals.h" 00026 00027 class TSoftwareRunInformationModule; 00028 00029 00049 class TRunInformationModuleCommand 00050 { 00051 00052 protected: 00053 TSoftwareRunInformationModule* theRunInformationModule; 00054 00055 protected: 00056 TRunInformationModuleCommand( TSoftwareRunInformationModule* module ); 00057 ~TRunInformationModuleCommand(); 00058 00059 public: 00060 const TSoftwareRunInformationModule* GetRunInformationModule() const; 00061 Tvoid SetRunInformationModule( TSoftwareRunInformationModule* module ); 00062 00063 }; 00064 00065 inline const TSoftwareRunInformationModule* TRunInformationModuleCommand::GetRunInformationModule() const 00066 { 00067 return theRunInformationModule; 00068 } 00069 00070 inline Tvoid TRunInformationModuleCommand::SetRunInformationModule( TSoftwareRunInformationModule* module ) 00071 { 00072 theRunInformationModule = module; 00073 return; 00074 } 00075 00076 #endif