------------------------------------------------------------------------------
| 167 | |
| 168 | //------------------------------------------------------------------------------ |
| 169 | void vtkHDFWriter::Implementation::CloseFile() |
| 170 | { |
| 171 | vtkDebugWithObjectMacro(this->Writer, |
| 172 | "Closing current file " << this->File << " " << this->Writer->FileName << " on rank " |
| 173 | << this->Writer->CurrentPiece); |
| 174 | |
| 175 | // Setting to H5I_INVALID_HID closes the group/file using RAII |
| 176 | this->StepsGroup = H5I_INVALID_HID; |
| 177 | this->Root = H5I_INVALID_HID; |
| 178 | this->File = H5I_INVALID_HID; |
| 179 | } |
| 180 | |
| 181 | //------------------------------------------------------------------------------ |
| 182 | bool vtkHDFWriter::Implementation::OpenSubfile(const std::string& filename) |
no outgoing calls
no test coverage detected