| 17 | }; |
| 18 | |
| 19 | class Manager: public Employee |
| 20 | { |
| 21 | void raiseSalary() override |
| 22 | { |
| 23 | cout<<100<<endl; |
| 24 | } |
| 25 | |
| 26 | void promote() override |
| 27 | { /* Manager specific promote */ } |
| 28 | }; |
| 29 | |
| 30 | class Engineer: public Employee |
| 31 | { |
nothing calls this directly
no outgoing calls
no test coverage detected