summaryrefslogtreecommitdiffstats
path: root/lookup/ILut.java
blob: 854f5e36180abdc1d1199f7e7dc170a835afbe1f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package lookup;

import java.util.LinkedList;
import java.util.List;

import DataStructure.GPScoordinate;
import DataStructure.SingleBTS;

interface ILut {
	int bts = 0;

	public LinkedList<GPScoordinate> get(SingleBTS MR);

	public void fill(GPScoordinate where, SingleBTS what);

	public LinkedList<GPScoordinate> get(List<SingleBTS> MR);

}