blob: c26ec3e895a8d1a95217fdac337e1b0a6efe3fc4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
package cgeo.geocaching.apps.cache.navi;
import cgeo.geocaching.Waypoint;
import android.app.Activity;
/**
* interface for navigation to a waypoint
*
*/
public interface WaypointNavigationApp {
void navigate(final Activity activity, final Waypoint waypoint);
boolean isEnabled(final Waypoint waypoint);
}
|