#ifndef EMPLOYEE_H #define EMPLOYEE_H #include class Employee { private: char *firstname, *lastname; int salary; public: Employee(); Employee(char *, char *, int) ; ~Employee(); void setFirstName(char*); void setLastName(char*); void setSalary(int); char* getFirstName() const; char* getLastName() const; int getSalary() const; }; #endif