Field3D

Scoped object - creates a dataspace on creation and closes it on destruction. More...

#include <Hdf5Util.h>

Inheritance diagram for Hdf5Util::H5ScopedScreate:
Hdf5Util::H5Base

Public Member Functions

void create (H5S_class_t type)
 
 H5ScopedScreate ()
 
 H5ScopedScreate (H5S_class_t type)
 
 ~H5ScopedScreate ()
 
- 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 - creates a dataspace on creation and closes it on destruction.

Definition at line 213 of file Hdf5Util.h.

Constructor & Destructor Documentation

◆ H5ScopedScreate() [1/2]

Hdf5Util::H5ScopedScreate::H5ScopedScreate ( )
inline

Definition at line 216 of file Hdf5Util.h.

217  : H5Base()
218  {
219  // Empty
220  }

◆ H5ScopedScreate() [2/2]

Hdf5Util::H5ScopedScreate::H5ScopedScreate ( H5S_class_t  type)
inline

Definition at line 221 of file Hdf5Util.h.

222  {
223  create(type);
224  }
void create(H5S_class_t type)
Definition: Hdf5Util.h:225

◆ ~H5ScopedScreate()

Hdf5Util::H5ScopedScreate::~H5ScopedScreate ( )
inline

Definition at line 229 of file Hdf5Util.h.

References Hdf5Util::H5Base::m_id.

230  {
231  if (m_id >= 0)
232  H5Sclose(m_id);
233  }

Member Function Documentation

◆ create()

void Hdf5Util::H5ScopedScreate::create ( H5S_class_t  type)
inline

Definition at line 225 of file Hdf5Util.h.

References Hdf5Util::H5Base::m_id.

Referenced by SparseDataReader< Data_T >::readBlockList(), and SparseDataReader< Data_T >::SparseDataReader().

226  {
227  m_id = H5Screate(type);
228  }

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