blob: 52d16cfd06d47a55cbdbfa9067d3f92877891bb6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
package cgeo.geocaching.apps.cache.navi;
import cgeo.geocaching.cgCache;
import cgeo.geocaching.cgWaypoint;
import cgeo.geocaching.apps.App;
import cgeo.geocaching.geopoint.Geopoint;
import android.app.Activity;
public interface NavigationApp extends App {
public boolean invoke(final Activity activity,
final cgCache cache, final cgWaypoint waypoint,
final Geopoint coords);
boolean isEnabled(final cgWaypoint waypoint);
boolean isEnabled(final Geopoint geopoint);
}
|