aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/apps/cache/navi/NavigationApp.java
blob: 9ec273e8ecd7d1cdea21d7032795d6bcda5ec569 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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);
}