1
0
Fork 0
firefox/intl/icu_capi/bindings/cpp/ICU4XLineBreakOptionsV1.hpp
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

29 lines
667 B
C++

#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