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

16 Zeilen
288 B
C++

#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