/**
 *	Written 2006-10 By Filip Ekberg
 *	School Project on BTH - Software Engineering
 *
 *	Copyright (C)
 *
 *
 *	This class starts the program
 */


public class Start 
{
	/**
	 *	Main Method - Starts program
	 */
	public static void main(String[] args)
	{
		TypeReco gui = new TypeReco();
		gui.setVisible(true);
	}
}
