MCPcopy Create free account
hub / github.com/BehaviorTree/BehaviorTree.CPP / ToNode

Function ToNode

3rdparty/tinyxml2/tinyxml2.h:2107–2109  ·  view source on GitHub ↗

Safe cast to XMLNode. This can return null.

Source from the content-addressed store, hash-verified

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 );

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected