7inline herr_t h5r_create(
void* ref,
12 herr_t err = H5Rcreate(ref, loc_id, name, ref_type, space_id);
14 HDF5ErrMapper::ToException<ReferenceException>(
15 std::string(
"Unable to create the reference for \"") + name +
"\":");
21#if (H5Rdereference_vers == 2)
22inline hid_t h5r_dereference(hid_t obj_id, hid_t oapl_id, H5R_type_t ref_type,
const void* ref) {
23 hid_t hid = H5Rdereference(obj_id, oapl_id, ref_type, ref);
25 HDF5ErrMapper::ToException<ReferenceException>(
"Unable to dereference.");
31inline hid_t h5r_dereference(hid_t dataset, H5R_type_t ref_type,
const void* ref) {
32 hid_t hid = H5Rdereference(dataset, ref_type, ref);
34 HDF5ErrMapper::ToException<ReferenceException>(
"Unable to dereference.");
Definition assert_compatible_spaces.hpp:15