7inline herr_t h5r_create(
void* ref,
12 herr_t err = H5Rcreate(ref, loc_id, name, ref_type, space_id);
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);
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);
Definition H5_definitions.hpp:22
static void ToException(const std::string &prefix_msg)
Definition H5Exception_misc.hpp:43