Return the root element of DOM. Equivalent to FirstChildElement(). To get the first node, use FirstChild(). */
| 1811 | To get the first node, use FirstChild(). |
| 1812 | */ |
| 1813 | XMLElement* RootElement() { |
| 1814 | return FirstChildElement(); |
| 1815 | } |
| 1816 | const XMLElement* RootElement() const { |
| 1817 | return FirstChildElement(); |
| 1818 | } |
nothing calls this directly
no test coverage detected