summaryrefslogtreecommitdiffstats
path: root/intl/icu_capi/cpp/include/ICU4XIsoWeekday.hpp
blob: ec33e4a80ec02ce1dfb6d2e4ac3b9275bd04023e (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
#ifndef ICU4XIsoWeekday_HPP
#define ICU4XIsoWeekday_HPP
#include <stdint.h>
#include <stddef.h>
#include <stdbool.h>
#include <algorithm>
#include <memory>
#include <variant>
#include <optional>
#include "diplomat_runtime.hpp"

#include "ICU4XIsoWeekday.h"


enum struct ICU4XIsoWeekday {
  Monday = 1,
  Tuesday = 2,
  Wednesday = 3,
  Thursday = 4,
  Friday = 5,
  Saturday = 6,
  Sunday = 7,
};

#endif