class Wind2Server {

	public static void main(String args[]) {
		String inifilename;
			
		if (  args.length != 1 ) {
			System.err.println("# usage: java Wind2Server inifile");
			System.err.println("# invoke with -Dswing.aatext=true for anti-aliased fonts");
			System.exit(1);
		}
		inifilename=args[0];
		IniFile ini=new IniFile(inifilename);

		System.err.println("# Starting wind2db");

		Wind2SerialServer serv=new Wind2SerialServer(ini);
		serv.go();
	
	}
}
