Add open_object, close_object functions in HDF5 interface

This commit is contained in:
Paul Romano 2021-10-13 07:27:56 -05:00
parent d024a3e008
commit 8bb2002d8f
3 changed files with 22 additions and 8 deletions

View file

@ -61,6 +61,8 @@ void ensure_exists(hid_t obj_id, const char* name, bool attribute = false);
vector<std::string> group_names(hid_t group_id);
vector<hsize_t> object_shape(hid_t obj_id);
std::string object_name(hid_t obj_id);
hid_t open_object(hid_t group_id, const std::string& name);
void close_object(hid_t obj_id);
//==============================================================================
// Fortran compatibility functions