package structures;

public interface SetLoc<T> extends Comparable<T> {
	
	public void setLoc(int newLoc);
	public int loc();
	
}
