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. */
| 1452 | multiple elements at the document level. |
| 1453 | */ |
| 1454 | const TiXmlElement* RootElement() const { return FirstChildElement(); } |
| 1455 | TiXmlElement* RootElement() { return FirstChildElement(); } |
| 1456 | |
| 1457 | /** If an error occurs, Error will be set to true. Also, |
no outgoing calls
no test coverage detected