import CTL.Types.Location;
import javaSys.%comp%CI;
 
import java.util.LinkedList;
 
public class Client
{
	public static void main (String args[])
	{
		LinkedList<Location> locs = Location.parseFile("locs.txt");
		if (locs.size() != 1)
			System.exit(1);
		CTL.Process proc = new CTL.Process(locs.get(0));
		%comp%CI.use(proc);
		// Put your client code in here.
		proc.stopService();
	}
}
