#include <Hdf5Resource.h>

Public Member Functions | |
| Hdf5GroupResource (hid_t group) | |
| Hdf5GroupResource () | |
| operator hid_t * () | |
This is a Resource class that closes HDF5 groups. It has a conversion operator to allow a Hdf5GroupResource object to be used where ever a hid_t that represents an open HDF5 group handle may be used.
Definition at line 805 of file Hdf5Resource.h.
| Hdf5GroupResource::Hdf5GroupResource | ( | hid_t | group | ) |
Construct a Resource object that wraps a hid_t HDF5 group handle.
This will take ownership of an existing hid_t group handle and will ensure that it is closed.
| group | The HDF5 group handle. |
Definition at line 817 of file Hdf5Resource.h.
| Hdf5GroupResource::Hdf5GroupResource | ( | ) |
| Hdf5GroupResource::operator hid_t * | ( | ) |
Returns a pointer to the underlying hid_t held by this Resource.
Returns a pointer to the underlying hid_t. This operator, used in conjunction with the dereferencing operator, allows the Hdf5GroupResource object to be used where ever a hid_t would normally be used.
Definition at line 840 of file Hdf5Resource.h.