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

#include "ICU4XLineBreakWordOption.h"



/**
 * See the [Rust documentation for `LineBreakWordOption`](https://docs.rs/icu/latest/icu/segmenter/enum.LineBreakWordOption.html) for more information.
 */
enum struct ICU4XLineBreakWordOption {
  Normal = 0,
  BreakAll = 1,
  KeepAll = 2,
};

#endif