Delete a node associated with this document. It will be unlinked from the DOM. */
| 1647 | It will be unlinked from the DOM. |
| 1648 | */ |
| 1649 | void DeleteNode( XMLNode* node ) { |
| 1650 | node->_parent->DeleteChild( node ); |
| 1651 | } |
| 1652 | |
| 1653 | void SetError( XMLError error, const char* str1, const char* str2 ); |
| 1654 |
no test coverage detected