summaryrefslogtreecommitdiff
path: root/lib/dbTypes.h
diff options
context:
space:
mode:
authorDan Goodliffe <dan@randomdan.homeip.net>2021-08-27 19:30:58 +0100
committerDan Goodliffe <dan@randomdan.homeip.net>2021-08-27 19:30:58 +0100
commit32ebcca4a5fb4a165739b305efbb17f7b2508412 (patch)
tree8026be399c57f26294730e61ae0f5657cfa85442 /lib/dbTypes.h
parentDon't declare clang 12 (diff)
downloadmygrate-32ebcca4a5fb4a165739b305efbb17f7b2508412.tar.bz2
mygrate-32ebcca4a5fb4a165739b305efbb17f7b2508412.tar.xz
mygrate-32ebcca4a5fb4a165739b305efbb17f7b2508412.zip
Make date/time types easy to create and compare
Diffstat (limited to 'lib/dbTypes.h')
-rw-r--r--lib/dbTypes.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/dbTypes.h b/lib/dbTypes.h
index e17315b..a9ed029 100644
--- a/lib/dbTypes.h
+++ b/lib/dbTypes.h
@@ -51,6 +51,7 @@ namespace MyGrate {
boost::numeric_cast<uint8_t>(tm.tm_mday))
{
}
+ bool operator<=>(const Date &) const = default;
uint16_t year;
uint8_t month;
uint8_t day;
@@ -63,6 +64,7 @@ namespace MyGrate {
boost::numeric_cast<uint8_t>(tm.tm_sec))
{
}
+ bool operator<=>(const Time &) const = default;
uint8_t hour;
uint8_t minute;
uint8_t second;
@@ -70,7 +72,12 @@ namespace MyGrate {
struct DateTime : public Date, public Time {
inline DateTime() { }
inline DateTime(const Date & d, const Time & t) : Date {d}, Time {t} { }
+ inline DateTime(uint16_t y, uint8_t m, uint8_t d, uint8_t H, uint8_t M, uint8_t S) :
+ DateTime {{y, m, d}, {H, M, S}}
+ {
+ }
explicit inline DateTime(const tm & tm) : Date {tm}, Time {tm} { }
+ bool operator<=>(const DateTime &) const = default;
};
using Blob = std::span<const std::byte>;