![]() |
![]() |
00001 #ifndef _Navigator_h_ 00002 #define _Navigator_h_ 00003 00010 #include "xgi/Method.h" 00011 #include "cgicc/HTMLClasses.h" 00012 #include "DQM/TrackerCommon/interface/WebElement.h" 00013 00014 class Navigator : public WebElement 00015 { 00016 private: 00017 00018 public: 00019 00020 Navigator(std::string the_url , 00021 std::string top, std::string left) 00022 : WebElement(the_url, top, left) 00023 { 00024 } 00025 ~Navigator() 00026 { 00027 } 00028 00029 void printHTML(xgi::Output * out); 00030 void printSelectHTML(xgi::Output * out, std::string name, std::string onchange); 00031 }; 00032 00033 00034 #endif