Field3D
|
Scoped object - creates a group on creation and closes it on destruction. More...
#include <Hdf5Util.h>
Public Member Functions | |
H5ScopedGcreate (hid_t parentLocation, const std::string &name) | |
H5ScopedGcreate (hid_t parentLocation, const std::string &name, hid_t lcpl_id, hid_t gcpl_id, hid_t gapl_id) | |
~H5ScopedGcreate () |
Scoped object - creates a group on creation and closes it on destruction.
Definition at line 150 of file Hdf5Util.h.
Hdf5Util::H5ScopedGcreate::H5ScopedGcreate | ( | hid_t | parentLocation, |
const std::string & | name | ||
) | [inline] |
Definition at line 153 of file Hdf5Util.h.
References Hdf5Util::H5Base::m_id.
{ m_id = H5Gcreate(parentLocation, name.c_str(), H5P_DEFAULT, H5P_DEFAULT, H5P_DEFAULT); }
Hdf5Util::H5ScopedGcreate::H5ScopedGcreate | ( | hid_t | parentLocation, |
const std::string & | name, | ||
hid_t | lcpl_id, | ||
hid_t | gcpl_id, | ||
hid_t | gapl_id | ||
) | [inline] |
Definition at line 158 of file Hdf5Util.h.
References Hdf5Util::H5Base::m_id.
{ m_id = H5Gcreate(parentLocation, name.c_str(), lcpl_id, gcpl_id, gapl_id); }
Hdf5Util::H5ScopedGcreate::~H5ScopedGcreate | ( | ) | [inline] |
Definition at line 165 of file Hdf5Util.h.
References Hdf5Util::H5Base::m_id.