Go to the documentation of this file.00001 #ifndef _DQM_TrackerCommon_HTMLLink_h_
00002 #define _DQM_TrackerCommon_HTMLLink_h_
00003
00004 #include "xgi/Method.h"
00005 #include "cgicc/HTMLClasses.h"
00006 #include "DQM/TrackerCommon/interface/WebElement.h"
00007
00008
00009 class HTMLLink : public WebElement
00010 {
00011 private:
00013 std::string text;
00014 std::string link_url;
00015
00016 public:
00017
00018 HTMLLink(std::string the_url, std::string top, std::string left, std::string the_text, std::string the_link_url)
00019 : WebElement(the_url, top, left)
00020 {
00021 text = the_text;
00022 link_url = the_link_url;
00023 }
00024
00025 ~HTMLLink()
00026 {
00027 }
00028
00029 void printHTML(xgi::Output *out);
00030 };
00031
00032 #endif