00001 #ifndef __THREADMESSAGEQUEUECOMMAND_H 00002 #define __THREADMESSAGEQUEUECOMMAND_H 00003 00004 #include "Command.h" 00005 00006 class ThreadMessageQueueCommand : public Command { 00007 public: 00008 ThreadMessageQueueCommand(); 00009 virtual string getCommandString(); 00010 virtual void run(std::ostream&); 00011 virtual void getHelp(std::ostream&); 00012 virtual void getHtmlInterface(std::ostream&); 00013 private: 00014 ThreadMessageQueue<int>* m_queue; 00015 }; 00016 00017 #endif