ICU4X
International Components for Unicode
Loading...
Searching...
No Matches
ICU4XPluralCategories.hpp
Go to the documentation of this file.
1#ifndef ICU4XPluralCategories_HPP
2#define ICU4XPluralCategories_HPP
3#include <stdint.h>
4#include <stddef.h>
5#include <stdbool.h>
6#include <algorithm>
7#include <memory>
8#include <variant>
9#include <optional>
10#include "diplomat_runtime.hpp"
11
12#include "ICU4XPluralCategories.h"
13
14
16 public:
17 bool zero;
18 bool one;
19 bool two;
20 bool few;
21 bool many;
22 bool other;
23};
24
25
26#endif
Definition ICU4XPluralCategories.hpp:15
bool zero
Definition ICU4XPluralCategories.hpp:17
bool two
Definition ICU4XPluralCategories.hpp:19
bool many
Definition ICU4XPluralCategories.hpp:21
bool other
Definition ICU4XPluralCategories.hpp:22
bool few
Definition ICU4XPluralCategories.hpp:20
bool one
Definition ICU4XPluralCategories.hpp:18