summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XWeekOf.hpp
blob: f0badc2bfb69e32591a55297978143f3af395137 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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