#ifndef STAFF_H_
#define STAFF_H_
#include <iostream>
#include <string>
#include "person.h"
using namespace std;

class Staff : public Person {
public:
  Staff(const string &name, int yearOfBirth, const string &room, double salary);
  void setRoom(const string &room);
  string getRoom() const;
  void setSalary(double salary);
  double getSalary() const;
  void print(ostream&) const;

private:
  string room_;
  double salary_;
};
#endif

