------------------------------------------------------------------------------
| 41 | |
| 42 | //------------------------------------------------------------------------------ |
| 43 | vtkAMRBaseReader::~vtkAMRBaseReader() |
| 44 | { |
| 45 | this->PointDataArraySelection->RemoveObserver(this->SelectionObserver); |
| 46 | this->CellDataArraySelection->RemoveObserver(this->SelectionObserver); |
| 47 | this->SelectionObserver->Delete(); |
| 48 | this->CellDataArraySelection->Delete(); |
| 49 | this->PointDataArraySelection->Delete(); |
| 50 | |
| 51 | if (this->Cache != nullptr) |
| 52 | { |
| 53 | this->Cache->Delete(); |
| 54 | } |
| 55 | |
| 56 | if (this->Metadata != nullptr) |
| 57 | { |
| 58 | this->Metadata->Delete(); |
| 59 | } |
| 60 | |
| 61 | delete[] this->FileName; |
| 62 | this->FileName = nullptr; |
| 63 | |
| 64 | this->SetController(nullptr); |
| 65 | } |
| 66 | |
| 67 | //------------------------------------------------------------------------------ |
| 68 | int vtkAMRBaseReader::FillOutputPortInformation(int vtkNotUsed(port), vtkInformation* info) |
nothing calls this directly
no test coverage detected