AWS SDK for C++AWS SDK for C++ Version 1.11.804 |
#include <tinyxml2.h>
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.
Definition at line 492 of file tinyxml2.h.
Definition at line 495 of file tinyxml2.h.
Visit a comment node.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 524 of file tinyxml2.h.
Visit a declaration.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 516 of file tinyxml2.h.
Visit a text node.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 520 of file tinyxml2.h.
Visit an unknown node.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 528 of file tinyxml2.h.
Visit a document.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 498 of file tinyxml2.h.
Visit an element.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 507 of file tinyxml2.h.
Visit a document.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 502 of file tinyxml2.h.
Visit an element.
Reimplemented in Aws::External::tinyxml2::XMLPrinter.
Definition at line 511 of file tinyxml2.h.