#include <iostream>
#include <type_traits>
#include <h5cpp/core/hdf5_capi.hpp>
#include <h5cpp/core/windows.hpp>
Go to the source code of this file.
|
enum | hdf5::dataspace::Type : std::underlying_type< H5S_class_t >::type { hdf5::dataspace::Type::Scalar = H5S_SCALAR,
hdf5::dataspace::Type::Simple = H5S_SIMPLE,
hdf5::dataspace::Type::NoData = H5S_NULL
} |
|
enum | hdf5::dataspace::SelectionType : std::underlying_type< H5S_sel_type >::type { hdf5::dataspace::SelectionType::None = H5S_SEL_NONE,
hdf5::dataspace::SelectionType::Points = H5S_SEL_POINTS,
hdf5::dataspace::SelectionType::Hyperslab = H5S_SEL_HYPERSLABS,
hdf5::dataspace::SelectionType::All = H5S_SEL_ALL
} |
| selection type More...
|
|
enum | hdf5::dataspace::SelectionOperation : std::underlying_type< H5S_seloper_t >::type {
hdf5::dataspace::SelectionOperation::Set = H5S_SELECT_SET,
hdf5::dataspace::SelectionOperation::Or = H5S_SELECT_OR,
hdf5::dataspace::SelectionOperation::And = H5S_SELECT_AND,
hdf5::dataspace::SelectionOperation::XOr = H5S_SELECT_XOR,
hdf5::dataspace::SelectionOperation::NotB = H5S_SELECT_NOTB,
hdf5::dataspace::SelectionOperation::NotA = H5S_SELECT_NOTA,
hdf5::dataspace::SelectionOperation::Append = H5S_SELECT_APPEND,
hdf5::dataspace::SelectionOperation::Prepend = H5S_SELECT_PREPEND
} |
| selection operator More...
|
|