// employ.h // Definition of class Employee #ifndef EMPLOY_H #define EMPLOY_H class Employee { public: Employee( const char *, const char * ); // constructor void print() const; // output first and last name ~Employee(); // destructor private: char *firstName; // dynamically allocated string char *lastName; // dynamically allocated string }; #endif