MCPcopy Create free account
hub / github.com/EricPengShuai/Interview / Manager

Class Manager

base_code/virtual.cpp:19–28  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17};
18
19class 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
30class Engineer: public Employee
31{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected