| 79 | cin >> publications; |
| 80 | } |
| 81 | void showdata() |
| 82 | { |
| 83 | Staff::showdata_code(); |
| 84 | Staff::showdata_name(); |
| 85 | cout << " Subject: " << subject << endl |
| 86 | << " Publications: " << publications << endl; |
| 87 | } |
| 88 | }; |
| 89 | |
| 90 | class Officer : public Staff |
nothing calls this directly
no outgoing calls
no test coverage detected