9#ifndef H5SELECTION_MISC_HPP
10#define H5SELECTION_MISC_HPP
15 const DataSpace& file_space,
const DataSet& set)
16 : _mem_space(memspace)
17 , _file_space(file_space)
20inline DataSpace Selection::getSpace() const noexcept {
24inline DataSpace Selection::getMemSpace() const noexcept {
28inline DataSet& Selection::getDataset() noexcept {
32inline const DataSet& Selection::getDataset() const noexcept {
37inline const DataType Selection::getDataType()
const {
38 return _set.getDataType();
Class representing a dataset.
Definition H5DataSet.hpp:28
Class representing the space (dimensions) of a dataset.
Definition H5DataSpace.hpp:37
HDF5 Data Type.
Definition H5DataType.hpp:48
Selection(const DataSpace &space)
public constructor is needed to create virtual datasets
Definition H5Selection.hpp:27