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