| 138 | float monthly_salary; |
| 139 | public: |
| 140 | Regular_Typist() { |
| 141 | monthly_salary = 0.0; |
| 142 | } |
| 143 | void getdata() { |
| 144 | Typist::getdata(); |
| 145 | cout << "Enter the monthly salary: "; cin >> monthly_salary; |
nothing calls this directly
no outgoing calls
no test coverage detected