------------------------------------------------------------------------------
| 212 | |
| 213 | //------------------------------------------------------------------------------ |
| 214 | void vtkHDFReader::Implementation::CloseMemberGroups() |
| 215 | { |
| 216 | if (this->VTKGroup >= 0) |
| 217 | { |
| 218 | H5Gclose(this->VTKGroup); |
| 219 | this->VTKGroup = -1; |
| 220 | } |
| 221 | for (size_t i = 0; i < this->AttributeDataGroup.size(); ++i) |
| 222 | { |
| 223 | if (this->AttributeDataGroup[i] >= 0) |
| 224 | { |
| 225 | H5Gclose(this->AttributeDataGroup[i]); |
| 226 | this->AttributeDataGroup[i] = -1; |
| 227 | } |
| 228 | } |
| 229 | } |
| 230 | |
| 231 | //------------------------------------------------------------------------------ |
| 232 | bool vtkHDFReader::Implementation::GetPartitionExtent(hsize_t partitionIndex, int* extent) |
no test coverage detected