school/cs142/final/faculty.h

20 lines
370 B
C
Raw Normal View History

2016-04-06 20:45:34 -07:00
#ifndef __FACULTY_H__
#define __FACULTY_H__
#include <iostream>
#include "employee.h"
using namespace std;
class faculty : public employee {
private:
int grad_students;
public:
faculty(string name, double pay_rate, int hours, string type);
int get_grad_students();
int set_grad_students();
int get_salary();
};
#endif