#ifndef HOURLY_EMPLOYEE_H
#define HOURLY_EMPLOYEE_H
#include <iostream>
#include <string>
#include "Employee.h"

using namespace std;

class HourlyEmployee : public Employee {
	protected:
		double hours;
		double wageRate;

	public:
		HourlyEmployee();
		HourlyEmployee(const string& theName, const string& theSsn, double theRate, double theHours);

		void setHours (double newHours);
		void setWageRate (double newWageRate);

		double getHours() const;
		double getWageRate() const;

		void printCheck() const;

};

#endif
