|
Public Member Functions |
| | XMLParser () |
| virtual | ~XMLParser () |
| void | parse (const char *buffer, int len) |
| | Parse chunk of XML data.
|
| void | finish () |
| | Finish parsing.
|
| bool | isWellFormed () const |
| | Returns true if the document is well formed.
|
| void | reset () |
| | Reset the parser.
|
| virtual void | documentStart () |
| | Called on start of an XML-Document.
|
| virtual void | documentEnd () |
| | Called at the end of an XML-Document.
|
| virtual void | comment (const std::string &text) |
| virtual void | characters (const char *text, unsigned len) |
| virtual void | elementStart (const std::string &name, const std::map< std::string, std::string > &attr) |
| | Called on start of an XML-Element.
|
| virtual void | elementEnd (const std::string &name) |
| | Called at the end of an XML-Element.
|
| virtual void | warning (const std::string &msg) |
| virtual void | error (const std::string &msg) |
| virtual void | fatal (const std::string &msg) |