| 846 | } |
| 847 | |
| 848 | void XMLNode::DeleteChildren() |
| 849 | { |
| 850 | while( _firstChild ) { |
| 851 | TIXMLASSERT( _lastChild ); |
| 852 | DeleteChild( _firstChild ); |
| 853 | } |
| 854 | _firstChild = _lastChild = 0; |
| 855 | } |
| 856 | |
| 857 | |
| 858 | void XMLNode::Unlink( XMLNode* child ) |
nothing calls this directly
no outgoing calls
no test coverage detected