Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
TiXmlVisitor Class Reference
Implements the interface to the "Visitor pattern" (see the Accept() method.) If you call the Accept() method, it requires being passed a TiXmlVisitor class to handle callbacks. More...
#include <tinyxml.h>
Inherited by TiXmlPrinter.
Public Member Functions | |
| virtual bool | VisitEnter (const TiXmlDocument &) |
| Visit a document. | |
| virtual bool | VisitExit (const TiXmlDocument &) |
| Visit a document. | |
| virtual bool | VisitEnter (const TiXmlElement &, const TiXmlAttribute *) |
| Visit an element. | |
| virtual bool | VisitExit (const TiXmlElement &) |
| Visit an element. | |
| virtual bool | Visit (const TiXmlDeclaration &) |
| Visit a declaration. | |
| virtual bool | Visit (const TiXmlText &) |
| Visit a text node. | |
| virtual bool | Visit (const TiXmlComment &) |
| Visit a comment node. | |
| virtual bool | Visit (const TiXmlUnknown &) |
| Visit an unknow 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 TiXmlVisitor 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 leaves 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 suppert Visiting.
You should never change the document from a callback.
- See also:
- TiXmlNode::Accept()
Definition at line 128 of file tinyxml.h.
Member Function Documentation
| virtual bool Visit | ( | const TiXmlDeclaration & | ) | [virtual] |
| virtual bool Visit | ( | const TiXmlUnknown & | ) | [virtual] |
| virtual bool Visit | ( | const TiXmlComment & | ) | [virtual] |
| virtual bool Visit | ( | const TiXmlText & | ) | [virtual] |
| virtual bool VisitEnter | ( | const TiXmlDocument & | ) | [virtual] |
| virtual bool VisitEnter | ( | const TiXmlElement & | , |
| const TiXmlAttribute * | |||
| ) | [virtual] |
| virtual bool VisitExit | ( | const TiXmlElement & | ) | [virtual] |
| virtual bool VisitExit | ( | const TiXmlDocument & | ) | [virtual] |
Generated on Tue Jul 12 2022 11:28:39 by
1.7.2