| 1046 | } |
| 1047 | |
| 1048 | void XMLNode::InsertChildPreamble( XMLNode* insertThis ) const |
| 1049 | { |
| 1050 | TIXMLASSERT( insertThis ); |
| 1051 | TIXMLASSERT( insertThis->_document == _document ); |
| 1052 | |
| 1053 | if ( insertThis->_parent ) |
| 1054 | insertThis->_parent->Unlink( insertThis ); |
| 1055 | else |
| 1056 | insertThis->_memPool->SetTracked(); |
| 1057 | } |
| 1058 | |
| 1059 | // --------- XMLText ---------- // |
| 1060 | char* XMLText::ParseDeep( char* p, StrPair* ) |
nothing calls this directly
no test coverage detected