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

33 lines
698 B
C++

#ifndef ICU4XWeekendContainsDay_HPP
#define ICU4XWeekendContainsDay_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"
#include "ICU4XWeekendContainsDay.h"
/**
* Documents which days of the week are considered to be a part of the weekend
*
* See the [Rust documentation for `weekend`](https://docs.rs/icu/latest/icu/calendar/week/struct.WeekCalculator.html#method.weekend) for more information.
*/
struct ICU4XWeekendContainsDay {
public:
bool monday;
bool tuesday;
bool wednesday;
bool thursday;
bool friday;
bool saturday;
bool sunday;
};
#endif