Files
cppLearnings/OOPlaypen/Employee.h
2015-10-03 16:50:19 -04:00

14 lines
269 B
C++

#pragma once
#include "Person.h"
class Employee :
public Person
{
public:
Employee(int age, string const &name, int sex, string department = string())
: Person(age, name, sex), department(department)
{
}
string department;
int taxId;
};