Return the root element of DOM. Equivalent to FirstChildElement(). To get the first node, use FirstChild(). */
| 1582 | To get the first node, use FirstChild(). |
| 1583 | */ |
| 1584 | XMLElement* RootElement() { |
| 1585 | return FirstChildElement(); |
| 1586 | } |
| 1587 | const XMLElement* RootElement() const { |
| 1588 | return FirstChildElement(); |
| 1589 | } |
nothing calls this directly
no test coverage detected