MCPcopy Create free account
hub / github.com/Kitware/VTK / CloseVTKFile

Method CloseVTKFile

IO/Legacy/vtkDataReader.cxx:3431–3444  ·  view source on GitHub ↗

Close a vtk file.

Source from the content-addressed store, hash-verified

3429
3430// Close a vtk file.
3431void 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//------------------------------------------------------------------------------
3447void vtkDataReader::InitializeCharacteristics()

Callers 15

OpenVTKFileMethod · 0.95
IsFileValidMethod · 0.95
ReadCellsMethod · 0.95
CharacterizeFileMethod · 0.95
WriteDataMethod · 0.45
ReadMetaDataSimpleMethod · 0.45
ReadMeshSimpleMethod · 0.45
ReadOutputTypeMethod · 0.45
ReadOutputTypeMethod · 0.45
ReadMeshSimpleMethod · 0.45
ReadMeshSimpleMethod · 0.45
WriteDataMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected