00001 #ifndef __HELPCOMMAND_H 00002 #define __HELPCOMMAND_H 00003 00004 #include "Command.h" 00005 00006 class HelpCommand : public MetaCommand { 00007 public: 00008 HelpCommand(CommandProcessor*); 00009 virtual string getCommandString(); 00010 virtual void run(std::ostream&); 00011 virtual void getHtmlInterface(std::ostream&); 00012 }; 00013 00014 00015 #endif