Copy constructor
| 2001 | } |
| 2002 | /// Copy constructor |
| 2003 | XMLHandle( const XMLHandle& ref ) : _node( ref._node ) { |
| 2004 | } |
| 2005 | /// Assignment |
| 2006 | XMLHandle& operator=( const XMLHandle& ref ) { |
| 2007 | _node = ref._node; |
no outgoing calls
no test coverage detected