HighFive 2.9.0
HighFive - Header-only C++ HDF5 interface
Loading...
Searching...
No Matches
string_padding.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <H5Tpublic.h>
4
5namespace HighFive {
6
7enum class StringPadding : std::underlying_type<H5T_str_t>::type {
8 NullTerminated = H5T_STR_NULLTERM,
9 NullPadded = H5T_STR_NULLPAD,
10 SpacePadded = H5T_STR_SPACEPAD
11};
12
13
14}
Definition H5_definitions.hpp:22
StringPadding
Definition string_padding.hpp:7