00001 #ifndef __CATCHERCOMMAND_H 00002 #define __CATCHERCOMMAND_H 00003 00004 #include "Command.h" 00005 00006 class CatcherCommand : public Command { 00007 public: 00008 virtual string getCommandString(); 00009 virtual void run(std::ostream&); 00010 virtual void getHelp(std::ostream&); 00011 virtual void getHtmlInterface(std::ostream&); 00012 private: 00013 void catcherAdd(std::ostream&); 00014 void catcherDelete(std::ostream&); 00015 void catcherWrite(std::ostream&); 00016 void catcherRead(std::ostream&); 00017 }; 00018 00019 #endif