CS计算机代考程序代写 c++ // from: Savitch. Absolute C++

// 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;
};

Leave a Reply

Your email address will not be published. Required fields are marked *