/* Filename: emparray.h Author: Br. David Carlson Date: January 24, 1998 Last Revised: February 21, 2013 This is the header file to accompany emparray.cpp. It provides the type EmpArrayType. */ #include "employee.h" const int EmpMax = 50; // Max number of employees typedef EmployeeType EmpArrayType[EmpMax]; // Function prototypes: int LoadArray(EmpArrayType EmpArray, int & EmpCount); float AverageRate(EmpArrayType EmpArray, int EmpCount); void PrintAboveAvg(EmpArrayType EmpArray, int EmpCount, float AvgRate); int BinarySearch(EmpArrayType EmpArray, int Low, int High, const EmployeeType & Target); void SelectionSort(EmpArrayType EmpArray, int Count);