ICU4X
International Components for Unicode
Loading...
Searching...
No Matches
ICU4XDateLength.hpp
Go to the documentation of this file.
1#ifndef ICU4XDateLength_HPP
2#define ICU4XDateLength_HPP
3#include <stdint.h>
4#include <stddef.h>
5#include <stdbool.h>
6#include <algorithm>
7#include <memory>
8#include <variant>
9#include <optional>
10#include "diplomat_runtime.hpp"
11
12#include "ICU4XDateLength.h"
13
14
15
19enum struct ICU4XDateLength {
20 Full = 0,
21 Long = 1,
22 Medium = 2,
23 Short = 3,
24};
25
26#endif
ICU4XDateLength
Definition ICU4XDateLength.hpp:19
@ Short
Definition ICU4XDateLength.hpp:23
@ Long
Definition ICU4XDateLength.hpp:21
@ Medium
Definition ICU4XDateLength.hpp:22
@ Full
Definition ICU4XDateLength.hpp:20