| 793 | } |
| 794 | |
| 795 | void XMLNode::DeleteChildren() |
| 796 | { |
| 797 | while( _firstChild ) { |
| 798 | TIXMLASSERT( _lastChild ); |
| 799 | DeleteChild( _firstChild ); |
| 800 | } |
| 801 | _firstChild = _lastChild = 0; |
| 802 | } |
| 803 | |
| 804 | |
| 805 | void XMLNode::Unlink( XMLNode* child ) |
nothing calls this directly
no outgoing calls
no test coverage detected