Analysis Software
Documentation for sPHENIX simulation software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
tinyxml2::XMLVisitor Class Reference

#include <JETSCAPE/blob/main/external_packages/tinyxml2.h>

+ Inheritance diagram for tinyxml2::XMLVisitor:

Public Member Functions

virtual ~XMLVisitor ()
 
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 Also
XMLNode::Accept()

Definition at line 459 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 459 of file tinyxml2.h

Constructor & Destructor Documentation

virtual tinyxml2::XMLVisitor::~XMLVisitor ( )
inlinevirtual

Definition at line 462 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 462 of file tinyxml2.h

Member Function Documentation

virtual bool tinyxml2::XMLVisitor::Visit ( const XMLDeclaration )
inlinevirtual

Visit a declaration.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 483 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 483 of file tinyxml2.h

Referenced by tinyxml2::XMLText::Accept(), tinyxml2::XMLComment::Accept(), tinyxml2::XMLDeclaration::Accept(), and tinyxml2::XMLUnknown::Accept().

+ Here is the caller graph for this function:

virtual bool tinyxml2::XMLVisitor::Visit ( const XMLText )
inlinevirtual

Visit a text node.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 487 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 487 of file tinyxml2.h

virtual bool tinyxml2::XMLVisitor::Visit ( const XMLComment )
inlinevirtual

Visit a comment node.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 491 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 491 of file tinyxml2.h

virtual bool tinyxml2::XMLVisitor::Visit ( const XMLUnknown )
inlinevirtual

Visit an unknown node.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 495 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 495 of file tinyxml2.h

virtual bool tinyxml2::XMLVisitor::VisitEnter ( const XMLDocument )
inlinevirtual

Visit a document.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 465 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 465 of file tinyxml2.h

Referenced by tinyxml2::XMLElement::Accept(), and tinyxml2::XMLDocument::Accept().

+ Here is the caller graph for this function:

virtual bool tinyxml2::XMLVisitor::VisitEnter ( const XMLElement ,
const XMLAttribute  
)
inlinevirtual

Visit an element.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 474 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 474 of file tinyxml2.h

virtual bool tinyxml2::XMLVisitor::VisitExit ( const XMLDocument )
inlinevirtual

Visit a document.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 469 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 469 of file tinyxml2.h

Referenced by tinyxml2::XMLElement::Accept(), and tinyxml2::XMLDocument::Accept().

+ Here is the caller graph for this function:

virtual bool tinyxml2::XMLVisitor::VisitExit ( const XMLElement )
inlinevirtual

Visit an element.

Reimplemented in tinyxml2::XMLPrinter.

Definition at line 478 of file tinyxml2.h.

View newest version in sPHENIX GitHub at line 478 of file tinyxml2.h


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