Field3D

Scoped object - opens an attribute data space on creation and closes it on destruction. More...

#include <Hdf5Util.h>

Inheritance diagram for Hdf5Util::H5ScopedAget_space:
Hdf5Util::H5Base

Public Member Functions

 H5ScopedAget_space (hid_t dataset_id)
 
 ~H5ScopedAget_space ()
 
- Public Member Functions inherited from Hdf5Util::H5Base
 H5Base ()
 
hid_t id () const
 Query the hid_t value.
 
 operator hid_t ()
 Implicit cast to hid_t.
 

Additional Inherited Members

- Protected Attributes inherited from Hdf5Util::H5Base
hid_t m_id
 

Detailed Description

Scoped object - opens an attribute data space on creation and closes it on destruction.

Definition at line 287 of file Hdf5Util.h.

Constructor & Destructor Documentation

◆ H5ScopedAget_space()

Hdf5Util::H5ScopedAget_space::H5ScopedAget_space ( hid_t dataset_id)
inline

Definition at line 290 of file Hdf5Util.h.

291 {
293 m_id = H5Aget_space(dataset_id);
294 if (m_id < 0)
295 throw Exc::AttrGetSpaceException("Couldn't get attribute space");
296 }
FIELD3D_NAMESPACE_OPEN FIELD3D_API boost::recursive_mutex g_hdf5Mutex
Definition Hdf5Util.cpp:67
boost::recursive_mutex::scoped_lock GlobalLock
Definition Hdf5Util.h:78

References g_hdf5Mutex, and Hdf5Util::H5Base::m_id.

◆ ~H5ScopedAget_space()

Hdf5Util::H5ScopedAget_space::~H5ScopedAget_space ( )
inline

Definition at line 297 of file Hdf5Util.h.

298 {
300 if (m_id >= 0)
301 H5Sclose(m_id);
302 }

References g_hdf5Mutex, and Hdf5Util::H5Base::m_id.


The documentation for this class was generated from the following file: