diff options
author | SanJacobs | 2022-07-09 15:01:02 +0200 |
---|---|---|
committer | SanJacobs | 2022-07-09 15:01:02 +0200 |
commit | 55adec80ffefd9a1090209cfe6298ff850dedfc4 (patch) | |
tree | 0fd4c1c0452a3d68fba8200f3e4b1c7b7db62faf /src/time.h | |
parent | a522e50d21e366e489d19fbd174d65bdb3d19988 (diff) | |
download | satscalc-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-x | src/time.h | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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; |