#ifndef EMPLOYEEH #define EMPLOYEEH #include "date.h" typedef int ss_t; //social security number; not portable class employee { date birth; date hired; ss_t ss; public: employee(const date& initial_birth, ss_t initial_ss); employee(int initial_month, int initial_day, int initial_year, ss_t initial_ss); ~employee() {cout << "Employee # " << ss << " gets a pink slip.\n";} date retire() const {date d = birth; d.next(65 * 365); return d;} void print() const; }; #endif