// HourlyEmployee.h #ifndef HOURLYEMPLOYEE_H #define HOURLYEMPLOYEE_H #include #include #include using namespace std; #include "Employee.h" class HourlyEmployee : public Employee { private: double Rate; double Hours; public: HourlyEmployee(); HourlyEmployee(string FN, string LN, string ID, double R, double H); ~HourlyEmployee(); double getRate() const; double getHours() const; void setRate(double R); void setHours(double H); double getPay() const; void Print(ostream& Out) const; }; #endif