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

#include "ICU4XLanguageDisplay.h"



/**
 * See the [Rust documentation for `LanguageDisplay`](https://docs.rs/icu/latest/icu/displaynames/options/enum.LanguageDisplay.html) for more information.
 */
enum struct ICU4XLanguageDisplay {
  Dialect = 0,
  Standard = 1,
};

#endif