Xml Scol plugin
|
#include <tinyxml2.h>
Protected Member Functions | |
XMLDeclaration (XMLDocument *doc) | |
XMLDeclaration (const XMLDeclaration &) | |
XMLDeclaration & | operator= (const XMLDeclaration &) |
Protected Member Functions inherited from tinyxml2::XMLNode | |
XMLNode (XMLDocument *) | |
XMLNode (const XMLNode &) | |
XMLNode & | operator= (const XMLNode &) |
Friends | |
class | XMLDocument |
Additional Inherited Members | |
Protected Attributes inherited from tinyxml2::XMLNode | |
XMLDocument * | _document |
XMLNode * | _parent |
StrPair | _value |
XMLNode * | _firstChild |
XMLNode * | _lastChild |
XMLNode * | _prev |
XMLNode * | _next |
Detailed Description
In correct XML the declaration is the first entry in the file.
<?xml version="1.0" standalone="yes"?>
TinyXML2 will happily read or write files without a declaration, however.
The text of the declaration isn't interpreted. It is parsed and written as a string.
Definition at line 866 of file tinyxml2.h.
Constructor & Destructor Documentation
◆ XMLDeclaration()
|
protected |
Definition at line 951 of file tinyxml2.cpp.
◆ ~XMLDeclaration()
|
protectedvirtual |
Definition at line 956 of file tinyxml2.cpp.
Member Function Documentation
◆ Accept()
|
virtual |
Accept a hierarchical visit of the nodes in the TinyXML DOM. Every node in the XML tree will be conditionally visited and the host will be called back via the TiXmlVisitor interface.
This is essentially a SAX interface for TinyXML. (Note however it doesn't re-parse the XML for the callbacks, so the performance of TinyXML is unchanged by using this interface versus any other.)
The interface has been based on ideas from:
Which are both good references for "visiting".
An example of using Accept():
TiXmlPrinter printer; tinyxmlDoc.Accept( &printer ); const char* xmlcstr = printer.CStr();
Implements tinyxml2::XMLNode.
Definition at line 991 of file tinyxml2.cpp.
◆ ParseDeep()
Reimplemented from tinyxml2::XMLNode.
Definition at line 962 of file tinyxml2.cpp.
◆ ShallowClone()
|
virtual |
Make a copy of this node, but not its children. You may pass in a Document pointer that will be the owner of the new Node. If the 'document' is null, then the node returned will be allocated from the current Document. (this->GetDocument())
Note: if called on a XMLDocument, this will return null.
Implements tinyxml2::XMLNode.
Definition at line 974 of file tinyxml2.cpp.
◆ ShallowEqual()
Test if 2 nodes are the same, but don't test children. The 2 nodes do not need to be in the same Document.
Note: if called on a XMLDocument, this will return false.
Implements tinyxml2::XMLNode.
Definition at line 984 of file tinyxml2.cpp.
◆ ToDeclaration() [1/2]
|
inlinevirtual |
Safely cast to a Declaration, or null.
Reimplemented from tinyxml2::XMLNode.
Definition at line 870 of file tinyxml2.h.
◆ ToDeclaration() [2/2]
|
inlinevirtual |
Reimplemented from tinyxml2::XMLNode.
Definition at line 873 of file tinyxml2.h.
Friends And Related Symbol Documentation
◆ XMLDocument
|
friend |
Definition at line 868 of file tinyxml2.h.
The documentation for this class was generated from the following files:
- G:/work/subversion/scol-technologies/trunk/scol/plugins/sXml/include/tinyxml2.h
- G:/work/subversion/scol-technologies/trunk/scol/plugins/sXml/src/tinyxml2.cpp
Generated by 1.9.8