| 1544 | |
| 1545 | |
| 1546 | XMLDocument::XMLDocument( bool processEntities, Whitespace whitespace ) : |
| 1547 | XMLNode( 0 ), |
| 1548 | _writeBOM( false ), |
| 1549 | _processEntities( processEntities ), |
| 1550 | _errorID( XML_NO_ERROR ), |
| 1551 | _whitespace( whitespace ), |
| 1552 | _errorStr1( 0 ), |
| 1553 | _errorStr2( 0 ), |
| 1554 | _charBuffer( 0 ) { |
| 1555 | _document = this; // avoid warning about 'this' in initializer list |
| 1556 | } |
| 1557 | |
| 1558 | |
| 1559 | XMLDocument::~XMLDocument() { |
nothing calls this directly
no outgoing calls
no test coverage detected