Code /* * Employee.h * CIS 250 * David Klick * 2005-01-24 * * Specification of Employee class interface */ #ifndef __EMPLOYEE_H_ #define __EMPLOYEE_H_ #include #include #include using std::strcpy; class date { public: int month; int day; int year; }; class Employee { private: char lastname[15]; unsigned long id; double rate; date hiredate; public: void print(); void setfields(char*, unsigned long, double, int, int, int); }; #endif