1
0
Fork 0
school/cs142/final/hourly.h

16 Zeilen
260 B
C++

#ifndef __HOURLY_H__
#define __HOURLY_H__
#include <iostream>
#include "employee.h"
using namespace std;
class hourly : public employee {
public:
hourly(string name, double pay_rate, int hours, string type);
int get_salary();
};
#endif