00001 #ifndef __EXITCOMMAND_H 00002 #define __EXITCOMMAND_H 00003 00004 00005 class ExitCommand : public Command { 00006 public: 00007 virtual string getCommandString(); 00008 virtual void run(std::ostream&); 00009 virtual void getHtmlInterface(std::ostream&); 00010 }; 00011 00012 00013 #endif