MCPcopy Create free account
hub / github.com/ashkulz/NppFTP / TiXmlHandle

Method TiXmlHandle

tinyxml/include/tinyxml.h:1642–1642  ·  view source on GitHub ↗

Create a handle from any node (at any depth of the tree.) This can be a null pointer.

Source from the content-addressed store, hash-verified

1640public:
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; }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected