// from: Savitch. Absolute C++
#pragma once
#include Employee.h
class SalariedEmployee : public Employee{
public:
SalariedEmployee();
SalariedEmployee(string name, string ssn, double weeklyPay);
SalariedEmployee(const SalariedEmployee& s);
SalariedEmployee& operator =(const SalariedEmployee& s);
double getSalary();
private:
double _weeklyPay;
};

![[SOLVED] CS c++ // from: Savitch. Absolute C++](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip.jpg)

![[Solved] Payroll calculation program-Python](https://assignmentchef.com/wp-content/uploads/2022/08/downloadzip-1200x1200.jpg)
Reviews
There are no reviews yet.