mirror of
https://git.gfz-potsdam.de/naaice/poet.git
synced 2025-12-16 12:54:50 +01:00
15 lines
242 B
C++
15 lines
242 B
C++
#pragma once
|
|
|
|
#include <H5Tpublic.h>
|
|
|
|
namespace HighFive {
|
|
|
|
enum class StringPadding : std::underlying_type<H5T_str_t>::type {
|
|
NullTerminated = H5T_STR_NULLTERM,
|
|
NullPadded = H5T_STR_NULLPAD,
|
|
SpacePadded = H5T_STR_SPACEPAD
|
|
};
|
|
|
|
|
|
}
|