summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XPluralCategory.hpp
blob: 24db42ec21bfeac38405da42a1786f4a7118297d (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
27
28
29
30
#ifndef ICU4XPluralCategory_HPP
#define ICU4XPluralCategory_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XPluralCategory.h"



/**
 * FFI version of `PluralCategory`.
 * 
 * See the [Rust documentation for `PluralCategory`](https://docs.rs/icu/latest/icu/plurals/enum.PluralCategory.html) for more information.
 */
enum struct ICU4XPluralCategory {
  Zero = 0,
  One = 1,
  Two = 2,
  Few = 3,
  Many = 4,
  Other = 5,
};

#endif