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