| 7 | int minutes; |
| 8 | public: |
| 9 | MyTime(): hours(0), minutes(0) |
| 10 | { |
| 11 | std::cout << "Constructor MyTime()" << std::endl; |
| 12 | } |
| 13 | MyTime(int m): hours(0), minutes(m) |
| 14 | { |
| 15 | std::cout << "Constructor MyTime(int)" << std::endl; |
nothing calls this directly
no outgoing calls
no test coverage detected