blob: 2fe2be0d0a1b93eeda201ad2f529105f57b0b505 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cgeo.geocaching.maps.interfaces;
import cgeo.geocaching.ICoordinates;
/**
* Defines the common functions of the provider-specific
* GeoPoint implementations
*/
public interface GeoPointImpl extends ICoordinates {
int getLatitudeE6();
int getLongitudeE6();
}
|