00001 /* 00002 * APOLLO: A complete DAQ and Online Data Analysis Framework for Cuore 00003 * $Id: QNullCommand.hh 631 2006-12-19 11:54:27Z giacher $ 00004 * M.P. created 28/10/4 00005 * 00006 * Class QNullCommand: no command; needed for error handling 00007 * 00008 */ 00009 00010 #ifndef __QNULLCOMMAND_HH_ 00011 #define __QNULLCOMMAND_HH_ 00012 00013 #include "QCuore.hh" 00014 #include "QCommand.hh" 00015 00016 class QNullCommand : public QCommand { 00017 public: 00018 QNullCommand() {SetValid(false);} 00019 virtual ~QNullCommand() {} 00020 00021 virtual void Execute() {} 00022 00023 virtual void CheckParams() {} 00024 00025 private: 00026 friend class QDaqServer; 00027 }; 00028 00029 #endif