summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XBidiDirection.hpp
blob: ad21e51910ea7bf737a61eae21ae1dfffba84ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#ifndef ICU4XBidiDirection_HPP
#define ICU4XBidiDirection_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XBidiDirection.h"


enum struct ICU4XBidiDirection {
  Ltr = 0,
  Rtl = 1,
  Mixed = 2,
};

#endif