Warning, file /include/highfive/bits/h5o_wrapper.hpp was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 #pragma once
0002
0003 #include <H5Ipublic.h>
0004 #include <H5Tpublic.h>
0005
0006 namespace HighFive {
0007 namespace detail {
0008
0009 inline hid_t h5o_open(hid_t loc_id, const char* name, hid_t lapl_id) {
0010 hid_t hid = H5Oopen(loc_id, name, lapl_id);
0011 if (hid < 0) {
0012 HDF5ErrMapper::ToException<GroupException>(std::string("Unable to open \"") + name + "\":");
0013 }
0014
0015 return hid;
0016 }
0017
0018 }
0019 }