Defines a bitmask enum for days of the week. More...
#include <cstdint>
Go to the source code of this file.
Typedefs | |
using | DaysOfWeek = uint8_t |
Type alias for a set of days (bitmask). | |
Enumerations | |
enum class | Day : uint8_t { Sunday = 1 << 0 , Monday = 1 << 1 , Tuesday = 1 << 2 , Wednesday = 1 << 3 , Thursday = 1 << 4 , Friday = 1 << 5 , Saturday = 1 << 6 } |
Enum for days of the week as bitmask flags. More... | |
Definition in file DaysOfWeek.h.
using DaysOfWeek = uint8_t |
Definition at line 31 of file DaysOfWeek.h.
|
strong |
Enumerator | |
---|---|
Sunday | |
Monday | |
Tuesday | |
Wednesday | |
Thursday | |
Friday | |
Saturday |
Definition at line 18 of file DaysOfWeek.h.