| 868 | } |
| 869 | |
| 870 | void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const { |
| 871 | TIXMLASSERT( insertThis ); |
| 872 | TIXMLASSERT( insertThis->_document == _document ); |
| 873 | |
| 874 | if ( insertThis->_parent ) |
| 875 | insertThis->_parent->Unlink( insertThis ); |
| 876 | else |
| 877 | insertThis->_memPool->SetTracked(); |
| 878 | } |
| 879 | |
| 880 | // --------- XMLText ---------- // |
| 881 | char* XMLText::ParseDeep( char* p, StrPair* ) { |
nothing calls this directly
no test coverage detected