| 110 | class Employee : public Person { |
| 111 | public: |
| 112 | Employee(const std::string& name, unsigned age, bool married) : Person(name, age), dependents_(), married_(married) {} |
| 113 | Employee(const Employee& rhs) : Person(rhs), dependents_(rhs.dependents_), married_(rhs.married_) {} |
| 114 | virtual ~Employee(); |
| 115 |
nothing calls this directly
no outgoing calls
no test coverage detected