CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
HTMLLink.h
Go to the documentation of this file.
1 #ifndef _DQM_TrackerCommon_HTMLLink_h_
2 #define _DQM_TrackerCommon_HTMLLink_h_
3 
4 #include "xgi/Method.h"
5 #include "cgicc/HTMLClasses.h"
7 
8 
9 class HTMLLink : public WebElement
10 {
11  private:
13  std::string text;
14  std::string link_url;
15 
16  public:
17 
18  HTMLLink(std::string the_url, std::string top, std::string left, std::string the_text, std::string the_link_url)
19  : WebElement(the_url, top, left)
20  {
21  text = the_text;
22  link_url = the_link_url;
23  }
24 
26  {
27  }
28 
29  void printHTML(xgi::Output *out);
30 };
31 
32 #endif
tuple out
Definition: dbtoconf.py:99
#define Output(cl)
Definition: vmac.h:193