/* Filename: EmployeeTest.cpp Author: Br. David Carlson Date: January 24, 1998 Last Revised: September 24, 2017 This program reads from the keyboard the data for one employee (first and last name, ID number, and wage rate) and then prints this data on the screen. Other files needed to compile this program: EmployeeSimple.h and EmployeeSimple.cpp */ #include "EmployeeSimple.h" int main(void) { EmployeeSimpleType EmployeeA, EmployeeB; cout << "Enter the data for employee A:" << endl; ReadEmployee(EmployeeA); cout << "Enter the data for employee B:" << endl; ReadEmployee(EmployeeB); cout << endl << "The data for employee A is:" << endl; PrintEmployee(EmployeeA); cout << endl << "The data for employee B is:" << endl; PrintEmployee(EmployeeB); return 0; }