// Arup Guha
// 4/5/07
// Class for Spring 2007 COP 3330 Assignment #5

public class Management extends SalariedEmployee {

	//	 The value of a bonus for Management.	
	final protected static int BONUS = 20000;
	
	// Stores whether or not the current object gets a bonus.
	protected boolean getbonus;
	
	// Constructor that sets the bonus to false.
	public Management(String f, String l, int daysv, double sal) {
		
	}
	
	// Sets the bonus to gotit.
	public void setbonus(boolean gotit) {
		
	}
	
	// Returns the value of the bonus. It's 0 if the current object
	// isn't supposed to get a bonus, and $20000 if it is.
	public int bonusval() {
		
	}
	
	// Mature's the current object one year. In particular, two vacation
	// days are added, a 10% increase in salary is given, and the bonus
	// is added to the salary at the end.
	protected void mature() {
		
	}
	
}