#include <iostream>
#include "Employee.cpp"
#include "SalariedEmployee.cpp"
#include "HourlyEmployee.cpp"
using namespace std;

int main(){

	HourlyEmployee matina;
	matina.setName("Matina");
	matina.setSsn("123-123-123");
	matina.setHours(50);
	matina.setWageRate(10);
	cout << "print check for: "<< matina.getName() <<endl;
	matina.printCheck();
	cout<<endl <<endl;

	SalariedEmployee george(" George Papadopoulos", "234-234-233",2500);
	cout <<"Print check for" <<george.getName() <<endl;
	george.printCheck();

return 0;
}
