| 141 | monthly_salary = 0.0; |
| 142 | } |
| 143 | void getdata() { |
| 144 | Typist::getdata(); |
| 145 | cout << "Enter the monthly salary: "; cin >> monthly_salary; |
| 146 | } |
| 147 | void showdata() { |
| 148 | Typist::showdata(); |
| 149 | cout << "Monthly salary: " << monthly_salary << endl; |
nothing calls this directly
no outgoing calls
no test coverage detected