BitmapToolkit Scol plugin
|
#include <tinyxml2.h>
Public Member Functions | |
virtual | ~XMLVisitor () |
virtual bool | VisitEnter (const XMLDocument &) |
Visit a document. | |
virtual bool | VisitExit (const XMLDocument &) |
Visit a document. | |
virtual bool | VisitEnter (const XMLElement &, const XMLAttribute *) |
Visit an element. | |
virtual bool | VisitExit (const XMLElement &) |
Visit an element. | |
virtual bool | Visit (const XMLDeclaration &) |
Visit a declaration. | |
virtual bool | Visit (const XMLText &) |
Visit a text node. | |
virtual bool | Visit (const XMLComment &) |
Visit a comment node. | |
virtual bool | Visit (const XMLUnknown &) |
Visit an unknown node. | |
Detailed Description
Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a XMLVisitor class to handle callbacks. For nodes that contain other nodes (Document, Element) you will get called with a VisitEnter/VisitExit pair. Nodes that are always leafs are simply called with Visit().
If you return 'true' from a Visit method, recursive parsing will continue. If you return false, no children of this node or its sibilings will be visited.
All flavors of Visit methods have a default implementation that returns 'true' (continue visiting). You need to only override methods that are interesting to you.
Generally Accept() is called on the TiXmlDocument, although all nodes support visiting.
You should never change the document from a callback.
- See also
- XMLNode::Accept()
Definition at line 385 of file tinyxml2.h.
Constructor & Destructor Documentation
◆ ~XMLVisitor()
|
inlinevirtual |
Definition at line 388 of file tinyxml2.h.
Member Function Documentation
◆ Visit() [1/4]
|
inlinevirtual |
Visit a comment node.
Reimplemented in tinyxml2::XMLPrinter.
Definition at line 417 of file tinyxml2.h.
◆ Visit() [2/4]
|
inlinevirtual |
Visit a declaration.
Reimplemented in tinyxml2::XMLPrinter.
Definition at line 409 of file tinyxml2.h.
◆ Visit() [3/4]
|
inlinevirtual |
Visit a text node.
Reimplemented in tinyxml2::XMLPrinter.
Definition at line 413 of file tinyxml2.h.
◆ Visit() [4/4]
|
inlinevirtual |
Visit an unknown node.
Reimplemented in tinyxml2::XMLPrinter.
Definition at line 421 of file tinyxml2.h.
◆ VisitEnter() [1/2]
|
inlinevirtual |
◆ VisitEnter() [2/2]
|
inlinevirtual |
◆ VisitExit() [1/2]
|
inlinevirtual |
◆ VisitExit() [2/2]
|
inlinevirtual |
The documentation for this class was generated from the following file:
- include/tinyxml2.h
Generated by 1.9.8