/**
 * Starts program by launching GUI window.
 * Begins to introduce model-view-controller (MVC) design pattern by separating
 * presentation concerns from application logic (what little there is). Note,
 * however, in this case there is no "model" to speak of. If there was a need for
 * a more robust data model, the controller would both interact with the view and 
 * manipulate the data in response to user input.
 * 
 * @author charlieg
 * @author <a href="mailto:charlieg@cis.udel.edu">charlieg@cis.udel.edu</a>
 * @author <a href="http://www.cis.udel.edu/~charlieg">www.cis.udel.edu/~charlieg</a>
 * @version 1.0, &nbsp; 22 Sept 2009
 *
 */
public class CelsiusController {
	public static void main(String[] args) {
		new CelsiusConverterGUI();
	}
	
	public static double celsiustofahrenheit(double celsius){
		return celsius * 1.8 + 32;
	}
}