------------------------------------------------------------------------------
| 210 | |
| 211 | //------------------------------------------------------------------------------ |
| 212 | vtkNetCDFCAMReader::~vtkNetCDFCAMReader() |
| 213 | { |
| 214 | this->SetFileName(nullptr); |
| 215 | this->SetCurrentFileName(nullptr); |
| 216 | this->SetConnectivityFileName(nullptr); |
| 217 | this->SetCurrentConnectivityFileName(nullptr); |
| 218 | delete[] this->TimeSteps; |
| 219 | this->TimeSteps = nullptr; |
| 220 | this->PointDataArraySelection->Delete(); |
| 221 | this->PointDataArraySelection = nullptr; |
| 222 | this->SelectionObserver->Delete(); |
| 223 | this->SelectionObserver = nullptr; |
| 224 | |
| 225 | delete this->Internals; |
| 226 | } |
| 227 | |
| 228 | //------------------------------------------------------------------------------ |
| 229 | int vtkNetCDFCAMReader::CanReadFile(const char* fileName) |
nothing calls this directly
no test coverage detected