| 162 | cout << "Enter the daily wage: "; cin >> daily_wage; |
| 163 | } |
| 164 | void showdata() { |
| 165 | Typist::showdata(); |
| 166 | cout << "Daily wage: " << daily_wage << endl; |
| 167 | } |
| 168 | }; |
| 169 | |
| 170 | int main() { |
nothing calls this directly
no outgoing calls
no test coverage detected