summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XTimeLength.hpp
blob: a7035d0900781bc56c255be569998e5f1d6e028b (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 ICU4XTimeLength_HPP
#define ICU4XTimeLength_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XTimeLength.h"



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

#endif