Regina Calculation Engine
|
Provides the callbacks for an XMLParser. More...
#include <utilities/xmlutils.h>
Public Member Functions | |
virtual | ~XMLParserCallback () |
Default destructor that does nothing. More... | |
virtual void | start_document (XMLParser *parser) |
Called at the start of the document. More... | |
virtual void | end_document () |
Called when the document is finalised. More... | |
virtual void | start_element (const std::string &n, const regina::xml::XMLPropertyDict &p) |
Called when an element's opening tag is encountered. More... | |
virtual void | end_element (const std::string &n) |
Called when an element's closing tag is encountered. More... | |
virtual void | characters (const std::string &s) |
Called when characters are encountered. More... | |
virtual void | comment (const std::string &s) |
Called when a comment is encountered. More... | |
virtual void | warning (const std::string &s) |
Called when a parser warning occurs. More... | |
virtual void | error (const std::string &s) |
Called when a parser error occurs. More... | |
virtual void | fatal_error (const std::string &s) |
Called when a parser fatal error occurs. More... | |
Provides the callbacks for an XMLParser.
The various routines in this class will be called when corresponding elements of the XML file being parsed are encountered.
The routines in this class do nothing; you will need to create a derived class that overrides some or all of these routines to do the processing that you require.