docs/html/classtinyxml2_1_1XMLVisitor.html
| | Jetson Inference
DNN Vision Library |
Public Member Functions | List of all members
tinyxml2::XMLVisitor Class Reference
Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a [XMLVisitor](classtinyxml2_1_1XMLVisitor.html "Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept()...") class to handle callbacks. More...
#include <xml.h>
Inheritance diagram for tinyxml2::XMLVisitor:
|
|
| virtual | ~XMLVisitor () |
| |
| virtual bool | VisitEnter (const XMLDocument &) |
| | Visit a document. More...
|
| |
| virtual bool | VisitExit (const XMLDocument &) |
| | Visit a document. More...
|
| |
| virtual bool | VisitEnter (const XMLElement &, const XMLAttribute *) |
| | Visit an element. More...
|
| |
| virtual bool | VisitExit (const XMLElement &) |
| | Visit an element. More...
|
| |
| virtual bool | Visit (const XMLDeclaration &) |
| | Visit a declaration. More...
|
| |
| virtual bool | Visit (const XMLText &) |
| | Visit a text node. More...
|
| |
| virtual bool | Visit (const XMLComment &) |
| | Visit a comment node. More...
|
| |
| virtual bool | Visit (const XMLUnknown &) |
| | Visit an unknown node. More...
|
| |
Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a [XMLVisitor](classtinyxml2_1_1XMLVisitor.html "Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept()...") 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()
|
| virtual tinyxml2::XMLVisitor::~XMLVisitor | ( | | ) | |
| inlinevirtual |
|
| virtual bool tinyxml2::XMLVisitor::Visit | ( | const XMLComment & | | ) | |
| inlinevirtual |
Visit a comment node.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::Visit | ( | const XMLDeclaration & | | ) | |
| inlinevirtual |
Visit a declaration.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::Visit | ( | const XMLText & | | ) | |
| inlinevirtual |
Visit a text node.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::Visit | ( | const XMLUnknown & | | ) | |
| inlinevirtual |
Visit an unknown node.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::VisitEnter | ( | const XMLDocument & | | ) | |
| inlinevirtual |
Visit a document.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::VisitEnter | ( | const XMLElement & | , | | | | const XMLAttribute * | | | | ) | | |
| inlinevirtual |
Visit an element.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::VisitExit | ( | const XMLDocument & | | ) | |
| inlinevirtual |
Visit a document.
Reimplemented in tinyxml2::XMLPrinter.
|
| virtual bool tinyxml2::XMLVisitor::VisitExit | ( | const XMLElement & | | ) | |
| inlinevirtual |
Visit an element.
Reimplemented in tinyxml2::XMLPrinter.
The documentation for this class was generated from the following file:
jetson-utils/xml.h
Generated on Tue Mar 28 2023 14:27:59 for Jetson Inference by 1.8.17