CMS 3D CMS Logo

/data/refman/pasoursint/CMSSW_4_1_8_patch13/src/DQM/TrackerCommon/interface/ContentViewer.h

Go to the documentation of this file.
00001 #ifndef _ContentViewer_h_
00002 #define _ContentViewer_h_
00003 
00010 #include "xgi/Method.h"
00011 #include "cgicc/HTMLClasses.h"
00012 #include "DQM/TrackerCommon/interface/WebElement.h"
00013 
00014 class ContentViewer : public WebElement
00015 {
00016  private:
00017 
00018  public:
00019 
00020   ContentViewer(std::string the_url ,         
00021                 std::string top, std::string left) 
00022     : WebElement(the_url, top, left)
00023     {
00024     }
00025   ~ContentViewer()
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