/* Filename: EmployeeSimple.h Author: Br. David Carlson Date: January 24, 1998 Last Revised: September 24, 2017 This is the header file to accompany EmployeeSimple.cpp. It provides the structure type EmployeeSimpleType. */ #pragma once #include #include using namespace std; const int NameMax = 16; struct EmployeeSimpleType { char FirstName[NameMax]; char LastName[NameMax]; int ID; float WageRate; }; // Function prototypes: void ReadEmployee(EmployeeSimpleType & Employee); void PrintEmployee(const EmployeeSimpleType & Employee); int EmpCompare(const EmployeeSimpleType & First, const EmployeeSimpleType & Second);