00001 #ifndef _ConfigBox_h_ 00002 #define _ConfigBox_h_ 00003 00012 #include "xgi/Method.h" 00013 #include "cgicc/HTMLClasses.h" 00014 #include "DQM/TrackerCommon/interface/WebElement.h" 00015 00016 class ConfigBox : public WebElement 00017 { 00018 private: 00019 00020 std::string callback; 00021 00022 public: 00023 00024 ConfigBox(std::string the_url, std::string top, std::string left) : WebElement(the_url, top, left) 00025 { 00026 callback = "Configure"; 00027 } 00028 ~ConfigBox() 00029 { 00030 } 00031 00032 void printHTML(xgi::Output * out); 00033 00034 }; 00035 00036 00037 #endif