Back to Tinyxml2

TinyXML

docs/classtinyxml2_1_1_x_m_l_visitor.html

11.0.02.7 KB
Original Source

| TinyXML-2 10.0.0 |

Loading...

Searching...

No Matches

Public Member Functions | List of all members

tinyxml2::XMLVisitor Class Reference

#include <tinyxml2.h>

Inheritance diagram for tinyxml2::XMLVisitor:

|

Public Member Functions

| | 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 siblings 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 XMLDocument, although all nodes support visiting.

You should never change the document from a callback.

See alsoXMLNode::Accept()


The documentation for this class was generated from the following file:


Generated on Sat Dec 30 2023 18:02:36 for TinyXML-2 by 1.10.0