| 151 | } |
| 152 | |
| 153 | void HourMinutes::SetDuration(TMinutes const duration) |
| 154 | { |
| 155 | SetHours(std::chrono::duration_cast<THours>(duration)); |
| 156 | SetMinutes(duration - GetHours()); |
| 157 | } |
| 158 | |
| 159 | HourMinutes operator-(HourMinutes const & hm) |
| 160 | { |
no outgoing calls
no test coverage detected