#include "Employee.h"

int main() {
	Employee* emp = new Employee("Sartor", 3, 10, 2012, 2000);
	emp->print();
	cout << "Size of employee is " << sizeof(*emp) << endl;
	cout << "Size of employee is " << sizeof(Employee) << " and size of Member is " << sizeof(Member);
	cout << " and size of Date is " << sizeof(Date) << " and size of string is " << sizeof(string) << endl;
	delete emp;

	Employee jack("Jack", 17, 10, 2012, 3500);


	return 0;
}
