MCPcopy Create free account
hub / github.com/Rustam-Z/cpp-programming / operator<<

Function operator<<

Lab_13/main1.cpp:67–72  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

65}
66
67void operator<<(ostream &out, DayTime &h)
68{
69 out << "HH: " << h.hour << endl
70 << "MM: " << h.minute << endl
71 << "SS: " << h.second << endl;
72}
73void operator++(DayTime &MainDayTime)
74{
75 MainDayTime.second++;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected