//File:	Employee2Client.java
import CSLib.*;
public class Employee2Client
{
	public static void main (String [] args)
	{
		//Create a new Employee2 object with null or 0 attributes
		Employee2 person = new Employee2();
		
		person.setName();
		person.setHoursWorked();
		person.setPayRate();
		person.calculateSalary();
		
		//output the attributes of person
		OutputBox out = new OutputBox();
		out.setSize(550, 75);
		out.println (person.toString());
	}
}
