summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XWeekOf.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'intl/icu_capi/cpp/include/ICU4XWeekOf.hpp')
-rw-r--r--intl/icu_capi/cpp/include/ICU4XWeekOf.hpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/intl/icu_capi/cpp/include/ICU4XWeekOf.hpp b/intl/icu_capi/cpp/include/ICU4XWeekOf.hpp
new file mode 100644
index 0000000000..f0badc2bfb
--- /dev/null
+++ b/intl/icu_capi/cpp/include/ICU4XWeekOf.hpp
@@ -0,0 +1,27 @@
+#ifndef ICU4XWeekOf_HPP
+#define ICU4XWeekOf_HPP
+#include <stdint.h>
+#include <stddef.h>
+#include <stdbool.h>
+#include <algorithm>
+#include <memory>
+#include <variant>
+#include <optional>
+#include "diplomat_runtime.hpp"
+
+#include "ICU4XWeekOf.h"
+
+#include "ICU4XWeekRelativeUnit.hpp"
+
+
+/**
+ * See the [Rust documentation for `WeekOf`](https://docs.rs/icu/latest/icu/calendar/week/struct.WeekOf.html) for more information.
+ */
+struct ICU4XWeekOf {
+ public:
+ uint16_t week;
+ ICU4XWeekRelativeUnit unit;
+};
+
+
+#endif