------------------------------------------------------------------------------
| 443 | |
| 444 | //------------------------------------------------------------------------------ |
| 445 | vtkTecplotReader::~vtkTecplotReader() |
| 446 | { |
| 447 | this->Init(); |
| 448 | |
| 449 | delete[] this->FileName; |
| 450 | |
| 451 | delete this->Internal; |
| 452 | this->Internal = nullptr; |
| 453 | |
| 454 | this->DataArraySelection->RemoveAllArrays(); |
| 455 | this->DataArraySelection->RemoveObserver(this->SelectionObserver); |
| 456 | this->DataArraySelection->Delete(); |
| 457 | this->DataArraySelection = nullptr; |
| 458 | |
| 459 | this->SelectionObserver->SetClientData(nullptr); |
| 460 | this->SelectionObserver->SetCallback(nullptr); |
| 461 | this->SelectionObserver->Delete(); |
| 462 | this->SelectionObserver = nullptr; |
| 463 | } |
| 464 | |
| 465 | //------------------------------------------------------------------------------ |
| 466 | void vtkTecplotReader::Init() |
nothing calls this directly
no test coverage detected