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