Copy constructor
| 2063 | } |
| 2064 | /// Copy constructor |
| 2065 | XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { |
| 2066 | } |
| 2067 | /// Assignment |
| 2068 | XMLHandle& operator=( const XMLHandle& ref ) { |
| 2069 | _node = ref._node; |
no outgoing calls
no test coverage detected