------------------------------------------------------------------------------
| 23 | |
| 24 | //------------------------------------------------------------------------------ |
| 25 | vtkAMRBaseParticlesReader::~vtkAMRBaseParticlesReader() |
| 26 | { |
| 27 | this->ParticleDataArraySelection->RemoveObserver(this->SelectionObserver); |
| 28 | this->SelectionObserver->Delete(); |
| 29 | this->ParticleDataArraySelection->Delete(); |
| 30 | |
| 31 | delete[] this->FileName; |
| 32 | this->FileName = nullptr; |
| 33 | |
| 34 | this->SetController(nullptr); |
| 35 | } |
| 36 | |
| 37 | //------------------------------------------------------------------------------ |
| 38 | void vtkAMRBaseParticlesReader::PrintSelf(std::ostream& os, vtkIndent indent) |
nothing calls this directly
no test coverage detected