// SalariedEmployee.h #ifndef SALARIEDEMPLOYEE_H #define SALARIEDEMPLOYEE_H #include #include #include using namespace std; #include "Employee.h" class SalariedEmployee : public Employee { private: double Salary; public: SalariedEmployee(); SalariedEmployee(string FN, string LN, string ID, double S); ~SalariedEmployee(); double getPay() const; void setPay(double R); void Print(ostream& Out) const; }; #endif