From 55adec80ffefd9a1090209cfe6298ff850dedfc4 Mon Sep 17 00:00:00 2001 From: SanJacobs Date: Sat, 9 Jul 2022 15:01:02 +0200 Subject: Reversed timesplit and added >= and <= to moments --- src/time.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/time.h') diff --git a/src/time.h b/src/time.h index 8bd886c..3afc70b 100755 --- a/src/time.h +++ b/src/time.h @@ -34,6 +34,8 @@ struct moment{ bool operator<(const moment& other) const; bool operator>(const moment& other) const; + bool operator<=(const moment& other) const; + bool operator>=(const moment& other) const; bool operator==(const moment& other) const; bool operator!=(const moment& other) const; delta operator-(const moment& other) const; -- cgit v1.2.1