| 28 | }; |
| 29 | |
| 30 | class Engineer: public Employee |
| 31 | { |
| 32 | void raiseSalary() override |
| 33 | { |
| 34 | cout<<200<<endl; |
| 35 | } |
| 36 | |
| 37 | void promote() override |
| 38 | { /* Manager specific promote */ } |
| 39 | }; |
| 40 | |
| 41 | |
| 42 | void globalRaiseSalary(Employee *emp[], int n) |
nothing calls this directly
no outgoing calls
no test coverage detected