00001
00002
00003
00004
00005
00006
00007
00008
00009
00010 #ifndef __QDAQGETCOMMAND_HH_
00011 #define __QDAQGETCOMMAND_HH_
00012
00013 #include "QCuore.hh"
00014 #include "QCommand.hh"
00015
00016 class QDaqGetCommand : public QCommand {
00017 public:
00018 QDaqGetCommand();
00019 virtual ~QDaqGetCommand();
00020
00021 virtual void Execute();
00022
00023 virtual void CheckParams();
00024
00025 private:
00026
00027 std::string GetStatus() const;
00028 std::string GetCurrentRun() const;
00029
00030 friend class QDaqServer;
00031 };
00032
00033 #endif