------------------------------------------------------------------------------
| 226 | |
| 227 | //------------------------------------------------------------------------------ |
| 228 | bool vtkHDFWriter::Implementation::CreateStepsGroup(hid_t group) |
| 229 | { |
| 230 | vtkHDF::ScopedH5GHandle stepsGroup{ H5Gcreate( |
| 231 | group, PATH::STEPS.c_str(), H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT) }; |
| 232 | return stepsGroup != H5I_INVALID_HID; |
| 233 | } |
| 234 | |
| 235 | //------------------------------------------------------------------------------ |
| 236 | hid_t vtkHDFWriter::Implementation::GetStepsGroup(hid_t currentGroup) |
no test coverage detected