#ifndef ROOT_TDOMParser
#define ROOT_TDOMParser
#ifndef ROOT_TXMLParser
#include "TXMLParser.h"
#endif
#ifndef ROOT_TXMLDocument
#include "TXMLDocument.h"
#endif
class TDOMParser : public TXMLParser {
private:
TXMLDocument *fTXMLDoc;
TDOMParser(const TDOMParser&);
TDOMParser& operator=(const TDOMParser&);
Int_t ParseContext();
public:
TDOMParser();
virtual ~TDOMParser();
virtual Int_t ParseFile(const char *filename);
virtual Int_t ParseBuffer(const char *buffer, Int_t len);
virtual void ReleaseUnderlying();
virtual TXMLDocument *GetXMLDocument() const;
ClassDef(TDOMParser, 0);
};
#endif
Last change: Wed Jun 25 08:35:59 2008
Last generated: 2008-06-25 08:35
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.