aboutsummaryrefslogtreecommitdiff
path: root/src/time.h
diff options
context:
space:
mode:
authorSanJacobs2022-07-09 15:01:02 +0200
committerSanJacobs2022-07-09 15:01:02 +0200
commit55adec80ffefd9a1090209cfe6298ff850dedfc4 (patch)
tree0fd4c1c0452a3d68fba8200f3e4b1c7b7db62faf /src/time.h
parenta522e50d21e366e489d19fbd174d65bdb3d19988 (diff)
downloadsatscalc-55adec80ffefd9a1090209cfe6298ff850dedfc4.tar.gz
satscalc-55adec80ffefd9a1090209cfe6298ff850dedfc4.tar.bz2
satscalc-55adec80ffefd9a1090209cfe6298ff850dedfc4.zip
Reversed timesplit and added >= and <= to moments
Diffstat (limited to 'src/time.h')
-rwxr-xr-xsrc/time.h2
1 files changed, 2 insertions, 0 deletions
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;