#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:
   TXMLDocument(const TXMLDocument&);            
   TXMLDocument& operator=(const TXMLDocument&); 
   _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
Last change: Tue May 13 08:24:23 2008
Last generated: 2008-05-13 08:24
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.