// Arup Guha
// 4/5/07
// Abstract class for Spring 2007 COP 3330 Assignment #5

abstract public class Employee {

	// Stores employee's basic information.	
	protected String first;
	protected String last;
	protected int daysofvacation;
	
	// Methods needed for all employees for taxes!
	abstract public double taxwithheld();
	
	abstract public double sswithheld();
	
	abstract public void printw2();
	
	// Basic constructor - Years Employed is automatically set to 0.
	public Employee(String f, String l, int d) {
		first = f;
		last = l;
		daysofvacation = d;
	}
}