------------------------------------------------------------------------------
| 395 | |
| 396 | //------------------------------------------------------------------------------ |
| 397 | vtkHDF::ScopedH5DHandle vtkHDFWriter::Implementation::CreateHdfDataset( |
| 398 | hid_t group, const char* name, hid_t type, hid_t dataspace) |
| 399 | { |
| 400 | return H5Dcreate(group, name, type, dataspace, H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); |
| 401 | } |
| 402 | |
| 403 | //------------------------------------------------------------------------------ |
| 404 | vtkHDF::ScopedH5DHandle vtkHDFWriter::Implementation::CreateHdfDataset( |
no test coverage detected