// cliente.cpp // test dell'overriding #include #include #include "Hourly.h" int main() { HourlyWorker h( "Bob","Smith",40.50,10.35 ); h.print(); Employee k("Paolino", "Paperino"); k.print(); cout << "\n\n"; //system("pause"); return 0; }