| 876 | } |
| 877 | |
| 878 | void XMLNode::DeleteChildren() |
| 879 | { |
| 880 | while( _firstChild ) { |
| 881 | TIXMLASSERT( _lastChild ); |
| 882 | DeleteChild( _firstChild ); |
| 883 | } |
| 884 | _firstChild = _lastChild = 0; |
| 885 | } |
| 886 | |
| 887 | |
| 888 | void XMLNode::Unlink( XMLNode* child ) |
nothing calls this directly
no outgoing calls
no test coverage detected