00001 #ifndef __USERCONFIGURATION_H 00002 #define __USERCONFIGURATION_H 00003 00004 class UserConfiguration { 00005 public: 00006 static void generateMenu(std::ostream& s); 00007 static void pageHeading(std::ostream& s); 00008 static void generateNodeHtmlInterface(std::ostream& s, string command, string subcommand, Node* node); 00009 static void generateHtmlCheckbox(std::ostream& out, string description, string value, bool isChecked); 00010 static bool setNode(Command*, std::ostream& s, Node* node); 00011 }; 00012 00013 #endif 00014