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

#include "ICU4XListLength.h"



/**
 * See the [Rust documentation for `ListLength`](https://docs.rs/icu/latest/icu/list/enum.ListLength.html) for more information.
 */
enum struct ICU4XListLength {
  Wide = 0,
  Short = 1,
  Narrow = 2,
};

#endif