Panda3D
Public Member Functions | List of all members
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. 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(). More...

Inheritance diagram for TiXmlVisitor:
TiXmlPrinter

Public Member Functions

bool Visit (const TiXmlComment)
 comment/ More...
 
bool Visit (const TiXmlDeclaration)
 declaration/ More...
 
bool Visit (const TiXmlText)
 text/ More...
 
bool Visit (const TiXmlUnknown)
 unknown/ More...
 
bool VisitEnter (const TiXmlDocument)
 doc/ More...
 
bool VisitEnter (const TiXmlElement, const TiXmlAttribute)
 firstAttribute/ More...
 
bool VisitExit (const TiXmlDocument)
 doc/ More...
 
bool VisitExit (const TiXmlElement)
 element/ More...
 

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() */

Member Function Documentation

◆ Visit() [1/4]

bool Visit ( const TiXmlComment  )

comment/

◆ Visit() [2/4]

bool Visit ( const TiXmlDeclaration  )

declaration/

◆ Visit() [3/4]

bool Visit ( const TiXmlText  )

text/

◆ Visit() [4/4]

bool Visit ( const TiXmlUnknown  )

unknown/

◆ VisitEnter() [1/2]

bool VisitEnter ( const TiXmlDocument  )

doc/

◆ VisitEnter() [2/2]

bool VisitEnter ( const TiXmlElement  ,
const TiXmlAttribute   
)

firstAttribute/

◆ VisitExit() [1/2]

bool VisitExit ( const TiXmlDocument  )

doc/

◆ VisitExit() [2/2]

bool VisitExit ( const TiXmlElement  )

element/