// Arup Guha
// 4/5/07
// Class for Spring 2007 COP 3330 Assignment #5

public class Researcher extends SalariedEmployee {

	// Set to true if the current object got a grant this year.	
	protected boolean getgrant;
	
	// Works just like the SalariedEmployee constructor.
	public Researcher(String f, String l, int daysv, double sal) {
		
	}
	
	// Set's whether or not the current object has received a grant
	// to gotit.
	public void setgrant(boolean gotit) {
		
	}
	
	
	// Mature's the current object one year.
	// In addition to the regular SalariedEmployee rules, if the
	// current object has gotten a grant, 10 more days of vacation
	// are added and and extra 5% increase in salary is given, on 
	// top of the regular raise for SalariedEmployees.
	protected void mature() {
		
	}
	
}
