00001 /* 00002 * APOLLO: A complete DAQ and Online Data Analysis Framework for Cuore 00003 * $Id: QDaqGetCommand.hh 3 2006-04-20 17:37:43Z pallas $ 00004 * M.P. created 28/10/4 00005 * 00006 * Class QDaqGetCommand: get command (any parameter getting) 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 00028 #endif