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