#ifndef SALARIED_EMPLOYEE_H
#define SALARIED_EMPLOYEE_
#include "Employee.h"

class SalariedEmployee: public Employee {
	protected:
		double salary;
	public:
		SalariedEmployee();
		SalariedEmployee(const string& theName, const string& theSsn, double theSalary);

		double getSalary() const;
		void setSalary(double newSalary);
		void printCheck() const;

};

#endif
