| 145 | cout << "Enter the monthly salary: "; cin >> monthly_salary; |
| 146 | } |
| 147 | void showdata() { |
| 148 | Typist::showdata(); |
| 149 | cout << "Monthly salary: " << monthly_salary << endl; |
| 150 | } |
| 151 | }; |
| 152 | |
| 153 | class Casual_Typist : public Typist { |
nothing calls this directly
no outgoing calls
no test coverage detected