blob: 1a60164db46984074c2d5f4c49e96f67aba69a02 (
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
|
#ifndef ICU4XLineBreakOptionsV1_HPP
#define ICU4XLineBreakOptionsV1_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XLineBreakOptionsV1.h"
#include "ICU4XLineBreakStrictness.hpp"
#include "ICU4XLineBreakWordOption.hpp"
/**
* See the [Rust documentation for `LineBreakOptions`](https://docs.rs/icu/latest/icu/segmenter/struct.LineBreakOptions.html) for more information.
*/
struct ICU4XLineBreakOptionsV1 {
public:
ICU4XLineBreakStrictness strictness;
ICU4XLineBreakWordOption word_option;
bool ja_zh;
};
#endif
|