| 72 | class Dependent : public Person { |
| 73 | public: |
| 74 | Dependent(const std::string& name, unsigned age, Education* education = 0) : Person(name, age), education_(education) {} |
| 75 | Dependent(const Dependent& rhs) : Person(rhs), education_(0) { education_ = (rhs.education_ == 0) ? 0 : new Education(*rhs.education_); } |
| 76 | virtual ~Dependent(); |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected