Field3D
Hdf5Util::H5ScopedAget_type Class Reference

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

#include <Hdf5Util.h>

Inheritance diagram for Hdf5Util::H5ScopedAget_type:
Hdf5Util::H5Base

Public Member Functions

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

Additional Inherited Members

- Protected Attributes inherited from Hdf5Util::H5Base
hid_t m_id
 

Detailed Description

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

Definition at line 283 of file Hdf5Util.h.

Constructor & Destructor Documentation

Hdf5Util::H5ScopedAget_type::H5ScopedAget_type ( hid_t  dataset_id)
inline

Definition at line 286 of file Hdf5Util.h.

References Hdf5Util::H5Base::m_id.

287  {
288  m_id = H5Aget_type(dataset_id);
289  if (m_id < 0)
290  throw Exc::AttrGetTypeException("Couldn't get attribute type");
291  }
Hdf5Util::H5ScopedAget_type::~H5ScopedAget_type ( )
inline

Definition at line 292 of file Hdf5Util.h.

References Hdf5Util::H5Base::m_id.

293  {
294  if (m_id >= 0)
295  H5Tclose(m_id);
296  }

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