We are going to create an abstract Employee class and two pure virtual functions - find outPay() and displayEmployee(). The abstract Employee class will prevent a programmer from creating an object based on Employee, however, a pointer can still be created. Objects based on Salaried and Hourly will be allowed. The pure virtual function find outPay() in Employee will force the child classes to implement find outPay(). The other pure virtual function displayEmployee() in Employee will force the child classes to implement displayEmployee().