Safe cast to XMLNode. This can return null.
| 1818 | |
| 1819 | /// Safe cast to XMLNode. This can return null. |
| 1820 | XMLNode* ToNode() { |
| 1821 | return _node; |
| 1822 | } |
| 1823 | /// Safe cast to XMLElement. This can return null. |
| 1824 | XMLElement* ToElement() { |
| 1825 | return ( ( _node == 0 ) ? 0 : _node->ToElement() ); |
nothing calls this directly
no outgoing calls
no test coverage detected