// Project 3 : Employee Database Part 3 // Programmer : Sean Smith // Class : CSC215 // Professor : Phill Miller #include "Project3H2.h" using namespace employeePayNamespace; // Defining EmployeePay Object EmployeePay::EmployeePay() { } // Destructor EmployeePay::~EmployeePay() { } // Defining IsHighlyPaid Function bool EmployeePay::IsHighlyPaid(float wage, float pay) { if (wage >= 20 || pay >= 800) return true; else return false; } // Defining CalculatePay Function float EmployeePay::CalculatePay(float wage, float hours) { return (wage*hours); }