blob: 7d3a706bdcbb1d763874902177a02ff6d7188d6e (
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.cgWaypoint;
import android.app.Activity;
/**
* interface for navigation to a waypoint
*
*/
public interface WaypointNavigationApp {
void navigate(final Activity activity, final cgWaypoint waypoint);
boolean isEnabled(final cgWaypoint waypoint);
}
|