| 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; } |
| 1646 | |
| 1647 | /// Return a handle to the first child node. |
| 1648 | TiXmlHandle FirstChild() const; |