Safe cast to XMLNode. This can return null.
| 2105 | |
| 2106 | /// Safe cast to XMLNode. This can return null. |
| 2107 | XMLNode* ToNode() { |
| 2108 | return _node; |
| 2109 | } |
| 2110 | /// Safe cast to XMLElement. This can return null. |
| 2111 | XMLElement* ToElement() { |
| 2112 | return ( _node ? _node->ToElement() : 0 ); |
nothing calls this directly
no outgoing calls
no test coverage detected