Get the root element -- the only top level element -- of the document. In well formed XML, there should only be one. TinyXml is tolerant of multiple elements at the document level. */
| 1450 | multiple elements at the document level. |
| 1451 | */ |
| 1452 | const TiXmlElement* RootElement() const { return FirstChildElement(); } |
| 1453 | TiXmlElement* RootElement() { return FirstChildElement(); } |
| 1454 | |
| 1455 | /** If an error occurs, Error will be set to true. Also, |