school/cs142/final/hourly.h

16 lines
260 B
C
Raw Normal View History

2016-04-06 20:45:34 -07:00
#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