------------------------------------------------------------------------------
| 70 | |
| 71 | //------------------------------------------------------------------------------ |
| 72 | vtkXMLDataParser::~vtkXMLDataParser() |
| 73 | { |
| 74 | this->FreeAllElements(); |
| 75 | delete[] this->OpenElements; |
| 76 | this->InlineDataStream->Delete(); |
| 77 | this->AppendedDataStream->Delete(); |
| 78 | delete[] this->BlockCompressedSizes; |
| 79 | delete[] this->BlockStartOffsets; |
| 80 | this->SetCompressor(nullptr); |
| 81 | if (this->AsciiDataBuffer) |
| 82 | { |
| 83 | this->FreeAsciiBuffer(); |
| 84 | } |
| 85 | } |
| 86 | |
| 87 | //------------------------------------------------------------------------------ |
| 88 | void vtkXMLDataParser::PrintSelf(ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected