Mercurial > minori
view src/include/date.h @ 8:b1f73678ef61
update
text paragraphs are now their own objects, as they should be
author | Paper <mrpapersonic@gmail.com> |
---|---|
date | Sat, 26 Aug 2023 03:39:34 -0400 |
parents | 1d82f6e04d7d |
children |
line wrap: on
line source
#ifndef __date_h #define __date_h #include <cstdint> #include <QDate> class Date { public: Date(); Date(int32_t y); Date(int32_t y, int8_t m, int8_t d); void SetYear(int32_t y); void SetMonth(int8_t m); void SetDay(int8_t d); int32_t GetYear() const; int8_t GetMonth() const; int8_t GetDay() const; QDate GetAsQDate(); bool operator< (const Date& other) const; bool operator> (const Date& other) const; bool operator<= (const Date& other) const; bool operator>= (const Date& other) const; private: int32_t year = -1; int8_t month = -1; int8_t day = -1; }; #endif // __date_h