#ifndef EMPLOYEE_H
#define EMPLOYEE_H
#include <iostream>
using namespace std;

class Employee {
	protected:
		// gia tis ypoklaseis, klironomountai san public
		//gia alles basikes klaseis ta stelnei san private, opws kanonika
		string name;
		string ssn;
		double netPay;

	public:
		Employee(); // default constractor
		Employee(const string& theName, const string& theSsn);

		string getName() const;
		string getSsn() const;
		double getNetPay() const;

		void setName(const string& theName);
		void setSsn(const string& theSsn);
		void setNetPay(double mewNetPay);

		void printCheck() const;
};

#endif
