#ifndef ROOT_TXMLDocument
#define ROOT_TXMLDocument
#ifndef ROOT_TObject
#include "TObject.h"
#endif
#ifndef ROOT_TString
#include "TString.h"
#endif
struct _xmlDoc;
class TXMLNode;
class TXMLDocument : public TObject {
private:
   _xmlDoc  *fXMLDoc;           
   TXMLNode *fRootNode;         
public:
   TXMLDocument(_xmlDoc *doc);
   virtual ~TXMLDocument();
   TXMLNode   *GetRootNode() const;
   const char *Version() const;
   const char *Encoding() const;
   const char *URL() const;
   ClassDef(TXMLDocument,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.