1
0
Fork 0
firefox/intl/icu_capi/bindings/cpp/ICU4XWeekRelativeUnit.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

25 lines
518 B
C++

#ifndef ICU4XWeekRelativeUnit_HPP
#define ICU4XWeekRelativeUnit_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#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