school/cs142/final/administrator.h

16 lines
288 B
C
Raw Normal View History

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