CMS 3D CMS Logo

/afs/cern.ch/work/a/aaltunda/public/www/CMSSW_5_3_14/src/DQM/TrackerCommon/interface/GifDisplay.h

Go to the documentation of this file.
00001 #ifndef _GifDisplay_h_
00002 #define _GifDisplay_h_
00003 
00010 #include "xgi/Method.h"
00011 #include "cgicc/HTMLClasses.h"
00012 #include "DQM/TrackerCommon/interface/WebElement.h"
00013 
00014 
00015 class GifDisplay : public WebElement
00016 {
00017  private:
00018   
00019   std::string height;
00020   std::string width;
00021   std::string name;
00022 
00023  public:
00024   
00025   GifDisplay(std::string the_url, std::string top, std::string left, 
00026              std::string the_height, std::string the_width, std::string the_name) 
00027     : WebElement(the_url, top, left)
00028     {
00029       height = the_height;
00030       width = the_width;
00031       name = the_name;
00032     }
00033   
00034   ~GifDisplay()
00035     {
00036     }
00037 
00038   void printHTML(xgi::Output *out);
00039 };
00040 
00041 
00042 #endif