| 86 | cout << "Enter number of publications: " ; cin >> publications; |
| 87 | } |
| 88 | void showdata() { |
| 89 | Staff::showdata_code(); |
| 90 | Staff::showdata_name(); |
| 91 | Education::showdata(); |
| 92 | cout << "Subject: " << subject << endl << "Publications: " << publications << endl; |
| 93 | } |
| 94 | }; |
| 95 | |
| 96 | class Officer : public Staff, public Education { |
nothing calls this directly
no outgoing calls
no test coverage detected