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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
#ifndef CST126_STRUCTURES_HPP
#define CST126_STRUCTURES_HPP
#include <cstdint>
#include <ios>
typedef unsigned long long uLLong;
typedef unsigned char BYTE;
constexpr size_t MAX_STREAM_SIZE = std::numeric_limits<std::streamsize>::max();
constexpr uLLong MAX_CHAR = 101;
union FloatIntUnion
{
float intFloat;
uint32_t uInt;
};
enum TemperatureType
{
Fahrenheit,
Celsius
};
struct DailyTemperature
{
float highTemp{};
float lowTemp{};
TemperatureType tempType{};
};
enum DayOfTheWeek
{
Sunday = 0,
Monday,
Tuesday,
Wednesday,
Thursday,
Friday,
Saturday = 6
};
enum Month
{
January = 1,
February,
March,
April,
May,
June,
July,
August,
September,
October,
November,
December
};
struct Date
{
Month month;
uint8_t day;
uint16_t year;
};
#endif
|