![]() |
aGrUM
0.20.3
a C++ library for (probabilistic) graphical models
|
If you call the Accept() method, it requires being passed a TiXmlVisitor class to handle callbacks. More...
#include <tinyxml.h>
Public Member Functions | |
virtual | ~TiXmlVisitor () |
virtual bool | VisitEnter (const TiXmlDocument &) |
Visit a document. More... | |
virtual bool | VisitExit (const TiXmlDocument &) |
Visit a document. More... | |
virtual bool | VisitEnter (const TiXmlElement &, const TiXmlAttribute *) |
Visit an element. More... | |
virtual bool | VisitExit (const TiXmlElement &) |
Visit an element. More... | |
virtual bool | Visit (const TiXmlDeclaration &) |
Visit a declaration. More... | |
virtual bool | Visit (const TiXmlStylesheetReference &) |
Visit a stylesheet reference. More... | |
virtual bool | Visit (const TiXmlText &) |
Visit a text node. More... | |
virtual bool | Visit (const TiXmlComment &) |
Visit a comment node. More... | |
virtual bool | Visit (const TiXmlUnknown &) |
Visit an unknow node. More... | |
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 simple 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.
|
inlinevirtual |
|
inlinevirtual |
Visit a declaration.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 162 of file tinyxml.h.
Referenced by TiXmlDeclaration::Accept().
|
inlinevirtual |
Visit a stylesheet reference.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 164 of file tinyxml.h.
Referenced by TiXmlStylesheetReference::Accept().
Visit a text node.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 168 of file tinyxml.h.
Referenced by TiXmlText::Accept().
|
inlinevirtual |
Visit a comment node.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 170 of file tinyxml.h.
Referenced by TiXmlComment::Accept().
|
inlinevirtual |
Visit an unknow node.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 172 of file tinyxml.h.
Referenced by TiXmlUnknown::Accept(), and ticpp::Visitor::Visit().
|
inlinevirtual |
Visit a document.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
|
inlinevirtual |
Visit an element.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
|
inlinevirtual |
Visit a document.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
|
inlinevirtual |
Visit an element.
Reimplemented in TiXmlPrinter, and ticpp::Visitor.
Definition at line 159 of file tinyxml.h.
Referenced by TiXmlElement::Accept().