| 73 | this->M = M; |
| 74 | } |
| 75 | Distance operator==(Distance &d) |
| 76 | { |
| 77 | if ((Km == d.Km) && (M == d.M)) |
| 78 | { |
| 79 | cout << "They are EQUAL.\n"; |
| 80 | return *this; |
| 81 | } |
| 82 | else |
| 83 | { |
| 84 | cout << "NOT EQUAL.\n"; |
| 85 | return *this; |
| 86 | } |
| 87 | } |
| 88 | }; |
| 89 | void DistanceSecond() |
| 90 | { |
nothing calls this directly
no outgoing calls
no test coverage detected