diff options
author | SanJacobs | 2022-04-15 16:25:41 +0200 |
---|---|---|
committer | SanJacobs | 2022-04-15 16:25:41 +0200 |
commit | 96ec1b889121412e9404517bc540291424119a4a (patch) | |
tree | eec751a0ed07e8965fd160c091e8d38f206bb94d | |
parent | 575c47e93889233fc1a03e9ea5f2cd61e434b55c (diff) | |
download | satscalc-96ec1b889121412e9404517bc540291424119a4a.tar.gz satscalc-96ec1b889121412e9404517bc540291424119a4a.tar.bz2 satscalc-96ec1b889121412e9404517bc540291424119a4a.zip |
Added description for timesplit()
-rwxr-xr-x | src/time.h | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -19,6 +19,9 @@ class day{ }; timeblock timesplit(timeblock &input_block, moment splitpoint); + // Splits a timeblock at splitpoint. + // It changes the input_block to end at splitpoint, and returns a new timeblock + // that lasts from splitpoint to where the input_block used to end. void wind(moment &input_moment, int minutes, int hours, int days); |