| 65 | } |
| 66 | |
| 67 | void operator<<(ostream &out, DayTime &h) |
| 68 | { |
| 69 | out << "HH: " << h.hour << endl |
| 70 | << "MM: " << h.minute << endl |
| 71 | << "SS: " << h.second << endl; |
| 72 | } |
| 73 | void operator++(DayTime &MainDayTime) |
| 74 | { |
| 75 | MainDayTime.second++; |
nothing calls this directly
no outgoing calls
no test coverage detected