CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
GifDisplay.h
Go to the documentation of this file.
1 #ifndef _GifDisplay_h_
2 #define _GifDisplay_h_
3 
10 #include "xgi/Method.h"
11 #include "cgicc/HTMLClasses.h"
13 
14 
15 class GifDisplay : public WebElement
16 {
17  private:
18 
19  std::string height;
20  std::string width;
21  std::string name;
22 
23  public:
24 
25  GifDisplay(std::string the_url, std::string top, std::string left,
26  std::string the_height, std::string the_width, std::string the_name)
27  : WebElement(the_url, top, left)
28  {
29  height = the_height;
30  width = the_width;
31  name = the_name;
32  }
33 
35  {
36  }
37 
38  void printHTML(xgi::Output *out);
39 };
40 
41 
42 #endif
std::string height
Definition: GifDisplay.h:19
void printHTML(xgi::Output *out)
Definition: GifDisplay.cc:3
std::string name
Definition: GifDisplay.h:21
tuple out
Definition: dbtoconf.py:99
std::string width
Definition: GifDisplay.h:20
#define Output(cl)
Definition: vmac.h:193
GifDisplay(std::string the_url, std::string top, std::string left, std::string the_height, std::string the_width, std::string the_name)
Definition: GifDisplay.h:25