#ifndef ROO_HTML
#define ROO_HTML
#include "THtml.h"
#include "TString.h"
#include "TList.h"
#include <fstream>
class RooHtml : public THtml {
public:
  inline RooHtml(const char *version) : _version(version), _hfColor("#FFCC00") { };
  inline virtual ~RooHtml() { };
   virtual void WriteHtmlHeader(ofstream &out, const char *title, const char* dir="", TClass* cls=0);
  virtual void  WriteHtmlFooter(ofstream &out, const char *dir="", const char *lastUpdate="",
				const char *author="", const char *copyright="");
  inline const char *getVersion() const { return _version.Data(); }
  void GetModuleName(TString& module, const char* filename) const;
  
  void addTopic(const char* tag, const char* description) ;
  void MakeIndexOfTopics() ;
  void setHeaderColor(const char* string) { _hfColor = string ; }
  
protected:
  TString _version;
  TString _hfColor ;
  TList _topicTagList ;
  TList _topicDescList ;
  char* getClassGroup(const char* fileName) const;
private:
  RooHtml(const RooHtml&) ;
  ClassDef(RooHtml,0) 
};
#endif
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.