| 1677 | |
| 1678 | |
| 1679 | XMLDocument::XMLDocument( bool processEntities, Whitespace whitespace ) : |
| 1680 | XMLNode( 0 ), |
| 1681 | _writeBOM( false ), |
| 1682 | _processEntities( processEntities ), |
| 1683 | _errorID( XML_NO_ERROR ), |
| 1684 | _whitespace( whitespace ), |
| 1685 | _errorStr1( 0 ), |
| 1686 | _errorStr2( 0 ), |
| 1687 | _charBuffer( 0 ) |
| 1688 | { |
| 1689 | _document = this; // avoid warning about 'this' in initializer list |
| 1690 | } |
| 1691 | |
| 1692 | |
| 1693 | XMLDocument::~XMLDocument() |
nothing calls this directly
no outgoing calls
no test coverage detected