Return the root element of DOM. Equivalent to FirstChildElement(). To get the first node, use FirstChild(). */
| 1783 | To get the first node, use FirstChild(). |
| 1784 | */ |
| 1785 | XMLElement* RootElement() { |
| 1786 | return FirstChildElement(); |
| 1787 | } |
| 1788 | const XMLElement* RootElement() const { |
| 1789 | return FirstChildElement(); |
| 1790 | } |
nothing calls this directly
no test coverage detected