Create a handle from any node (at any depth of the tree.) This can be a null pointer.
| 1640 | public: |
| 1641 | /// Create a handle from any node (at any depth of the tree.) This can be a null pointer. |
| 1642 | TiXmlHandle( TiXmlNode* _node ) { this->node = _node; } |
| 1643 | /// Copy constructor |
| 1644 | TiXmlHandle( const TiXmlHandle& ref ) { this->node = ref.node; } |
| 1645 | TiXmlHandle operator=( const TiXmlHandle& ref ) { if ( &ref != this ) this->node = ref.node; return *this; } |
nothing calls this directly
no outgoing calls
no test coverage detected