#ifndef ICU4XWeekRelativeUnit_HPP #define ICU4XWeekRelativeUnit_HPP #include #include #include #include #include #include #include #include "diplomat_runtime.hpp" #include "ICU4XWeekRelativeUnit.h" /** * See the [Rust documentation for `RelativeUnit`](https://docs.rs/icu/latest/icu/calendar/week/enum.RelativeUnit.html) for more information. */ enum struct ICU4XWeekRelativeUnit { Previous = 0, Current = 1, Next = 2, }; #endif