| 127 | cout << "Enter the speed (wprds/min): "; cin >> speed; |
| 128 | } |
| 129 | void showdata() { |
| 130 | Staff::showdata_code(); |
| 131 | Staff::showdata_name(); |
| 132 | cout << "Speed (words/min): " << speed << endl; |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | class Regular_Typist : public Typist { |
no outgoing calls
no test coverage detected