#include <cppdom.h>
Public Methods | |
XMLEventHandler () | |
ctor. More... | |
virtual | ~XMLEventHandler () |
virtual dtor. More... | |
virtual void | startDocument () |
called when parsing of an xml document starts. More... | |
virtual void | endDocument () |
called when ended parsing a document. More... | |
virtual void | processingInstruction (XMLNode &pinode) |
called when parsing a processing instruction. More... | |
virtual void | startNode (const std::string &nodename) |
called when start parsing a node. More... | |
virtual void | parsedAttributes (XMLAttributes &attr) |
called when an attribute list was parsed. More... | |
virtual void | endNode (XMLNode &node) |
called when parsing of a node was finished. More... | |
virtual void | gotCdata (const std::string &cdata) |
called when a cdata section ended. More... |
Definition at line 544 of file cppdom.h.
|
ctor.
Definition at line 548 of file cppdom.h.
00548 {} |
|
virtual dtor.
Definition at line 551 of file cppdom.h.
00551 {} |
|
called when ended parsing a document.
Definition at line 557 of file cppdom.h.
00557 {} |
|
called when parsing of a node was finished.
Definition at line 567 of file cppdom.h.
00567 {} |
|
called when a cdata section ended.
Definition at line 570 of file cppdom.h.
00570 {} |
|
called when an attribute list was parsed.
Definition at line 565 of file cppdom.h.
00565 {} |
|
called when parsing a processing instruction.
Definition at line 560 of file cppdom.h.
00560 {} |
|
called when parsing of an xml document starts.
Definition at line 554 of file cppdom.h.
00554 {} |
|
called when start parsing a node.
Definition at line 563 of file cppdom.h.
00563 {} |