From f2fb044281983cd6806f84dda56ebc26655b6ee1 Mon Sep 17 00:00:00 2001 From: San Jacobs Date: Sun, 3 Apr 2022 14:40:19 +0200 Subject: Progress made on C++ version --- src/time.h | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/time.h (limited to 'src/time.h') diff --git a/src/time.h b/src/time.h new file mode 100644 index 0000000..5087108 --- /dev/null +++ b/src/time.h @@ -0,0 +1,28 @@ +#pragma once +#include + +struct moment{ + signed int minutes; + signed int hours; // 24-hour format. 23:59 progresses to 00:00 + signed int day; + signed int month; + signed int year; +}; + +struct timeblock{ + moment start; + moment end; +}; + +class day{ + +}; + +timeblock timesplit(timeblock &input_block, moment splitpoint); + +void wind(moment &input_moment, int minutes, int hours, int days); + +int days_in(int month, int year); + +std::string timeprint(moment input_moment); + -- cgit v1.2.1