Copy constructor
| 2036 | } |
| 2037 | /// Copy constructor |
| 2038 | XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { |
| 2039 | } |
| 2040 | /// Assignment |
| 2041 | XMLHandle& operator=( const XMLHandle& ref ) { |
| 2042 | _node = ref._node; |
no outgoing calls
no test coverage detected