// Employee.cpp #include #include "Employee.h" Employee::Employee( string first, string last ) { firstName = first; lastName = last; } // stampa oggetti Employee void Employee::print() const { //cout << "Employee::print() e' in esecuzione\n"; cout << firstName << ' ' << lastName; }