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

#include "ICU4XPluralCategories.h"



/**
 * FFI version of `PluralRules::categories()` data.
 */
struct ICU4XPluralCategories {
 public:
  bool zero;
  bool one;
  bool two;
  bool few;
  bool many;
  bool other;
};


#endif