summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XDateLength.hpp
blob: 8e7edd4d64fd515eacea842e51823e8860e0195b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#ifndef ICU4XDateLength_HPP
#define ICU4XDateLength_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XDateLength.h"



/**
 * See the [Rust documentation for `Date`](https://docs.rs/icu/latest/icu/datetime/options/length/enum.Date.html) for more information.
 */
enum struct ICU4XDateLength {
  Full = 0,
  Long = 1,
  Medium = 2,
  Short = 3,
};

#endif