QSlowStartCommand.hh
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015 #ifndef _QSLOW_START_COMMAND_HH_
00016 #define _QSLOW_START_COMMAND_HH_
00017
00018
00019 #include <map>
00020 #include <string>
00021
00022
00023 #include "QCuore.hh"
00024 #include "QSlowBaseCommand.hh"
00025
00026 class QSlowStartCommand : public QSlowBaseCommand {
00027
00028 public:
00029
00030
00031 QSlowStartCommand();
00032
00033
00034 virtual ~QSlowStartCommand();
00035
00036
00037 virtual void Execute();
00038
00039
00040 virtual void CheckParams();
00041
00042 private:
00043
00044
00045 void Start(QError& ErrorRet, QSlowTarget_t Target, QSlowEleCommand_t CmdCode);
00046
00047 };
00048
00049 #endif // _QSLOW_START_COMMAND_HH_