Close a vtk file.
| 3429 | |
| 3430 | // Close a vtk file. |
| 3431 | void vtkDataReader::CloseVTKFile() |
| 3432 | { |
| 3433 | vtkDebugMacro(<< "Closing vtk file"); |
| 3434 | |
| 3435 | // Restore the previous locale settings |
| 3436 | // The stream is deleted below, so this is done just to be tidy. |
| 3437 | if (this->IS != nullptr) |
| 3438 | { |
| 3439 | this->IS->imbue(this->OriginalStreamLocale); |
| 3440 | } |
| 3441 | |
| 3442 | delete this->IS; |
| 3443 | this->IS = nullptr; |
| 3444 | } |
| 3445 | |
| 3446 | //------------------------------------------------------------------------------ |
| 3447 | void vtkDataReader::InitializeCharacteristics() |
no outgoing calls
no test coverage detected