summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp')
-rw-r--r--intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp26
1 files changed, 26 insertions, 0 deletions
diff --git a/intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp b/intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp
new file mode 100644
index 0000000000..d4eac0f43e
--- /dev/null
+++ b/intl/icu_capi/cpp/include/ICU4XLineBreakStrictness.hpp
@@ -0,0 +1,26 @@
+#ifndef ICU4XLineBreakStrictness_HPP
+#define ICU4XLineBreakStrictness_HPP
+#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
+#include <algorithm>
+#include <memory>
+#include <variant>
+#include <optional>
+#include "diplomat_runtime.hpp"
+
+#include "ICU4XLineBreakStrictness.h"
+
+
+
+/**
+ * See the [Rust documentation for `LineBreakStrictness`](https://docs.rs/icu/latest/icu/segmenter/enum.LineBreakStrictness.html) for more information.
+ */
+enum struct ICU4XLineBreakStrictness {
+ Loose = 0,
+ Normal = 1,
+ Strict = 2,
+ Anywhere = 3,
+};
+
+#endif