// Employee.h #ifndef EMPLOYEE_H #define EMPLOYEE_H #include using namespace std; class Employee { public: Employee( string, string ); // costruttore void print() const; // stampa private: string firstName; // nome string lastName; // cognome }; #endif