------------------------------------------------------------------------------
| 150 | |
| 151 | //------------------------------------------------------------------------------ |
| 152 | vtkAlgorithm::~vtkAlgorithm() |
| 153 | { |
| 154 | this->SetInformation(nullptr); |
| 155 | if (this->Executive) |
| 156 | { |
| 157 | this->Executive->UnRegister(this); |
| 158 | this->Executive = nullptr; |
| 159 | } |
| 160 | if (this->ProgressObserver) |
| 161 | { |
| 162 | this->ProgressObserver->UnRegister(this); |
| 163 | this->ProgressObserver = nullptr; |
| 164 | } |
| 165 | this->InputPortInformation->Delete(); |
| 166 | this->OutputPortInformation->Delete(); |
| 167 | delete this->AlgorithmInternal; |
| 168 | delete[] this->ProgressText; |
| 169 | this->ProgressText = nullptr; |
| 170 | } |
| 171 | |
| 172 | //------------------------------------------------------------------------------ |
| 173 | void vtkAlgorithm::SetProgressObserver(vtkProgressObserver* po) |
nothing calls this directly
no test coverage detected