Mercurial > minori
annotate src/include/date.h @ 4:5af270662505
Set override functions as override
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 12 Aug 2023 12:08:16 -0400 |
parents | 23d0d9319a00 |
children | 1d82f6e04d7d |
rev | line source |
---|---|
2 | 1 #ifndef __date_h |
2 #define __date_h | |
3 #include <cstdint> | |
4 #include <QDate> | |
5 class Date { | |
6 public: | |
7 Date(); | |
8 Date(int32_t y); | |
9 Date(int32_t y, int8_t m, int8_t d); | |
10 void SetYear(int32_t y); | |
11 void SetMonth(int8_t m); | |
12 void SetDay(int8_t d); | |
13 int32_t GetYear(); | |
14 int8_t GetMonth(); | |
15 int8_t GetDay(); | |
16 QDate GetAsQDate(); | |
17 | |
18 private: | |
19 int32_t year = -1; | |
20 int8_t month = -1; | |
21 int8_t day = -1; | |
22 }; | |
23 #endif // __date_h |