summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XRoundingIncrement.h
blob: c4b0666befa9ed1ffcb931b6634a57da105deedb (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
31
32
33
#ifndef ICU4XRoundingIncrement_H
#define ICU4XRoundingIncrement_H
#include <stdio.h>
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include "diplomat_runtime.h"

#ifdef __cplusplus
namespace capi {
#endif

typedef enum ICU4XRoundingIncrement {
  ICU4XRoundingIncrement_MultiplesOf1 = 0,
  ICU4XRoundingIncrement_MultiplesOf2 = 1,
  ICU4XRoundingIncrement_MultiplesOf5 = 2,
  ICU4XRoundingIncrement_MultiplesOf25 = 3,
} ICU4XRoundingIncrement;
#ifdef __cplusplus
} // namespace capi
#endif
#ifdef __cplusplus
namespace capi {
extern "C" {
#endif

void ICU4XRoundingIncrement_destroy(ICU4XRoundingIncrement* self);

#ifdef __cplusplus
} // extern "C"
} // namespace capi
#endif
#endif