Introduction - If you have any usage issues, please Google them yourself
Xml file read and write.
TinyXml implements the DOM access model, thus providing a series of classes corresponding to each node in the XML file. The relationship between the main classes is as follows:
TiXmlBase: the base class of other classes, is an abstract class
TiXmlNode: represents a node that contains the general method of the node, such as access to a child node, a sibling node, an edit itself, an edit child node
TiXmlDocument: that the entire XML document, does not correspond to a particular node.
TiXmlElement: Indicates an element node that can contain child nodes and TiXmlAttribute
TiXmlComment: Indicates a comment
TiXmlDeclaration: Indicates a statement
TiXmlText: Indicates the text node
TiXmlUnknown: that unknown node, usually wrong
TiXmlAttribute: represents the attributes of an element