aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/IWaypoint.java
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/cgeo/geocaching/IWaypoint.java')
-rw-r--r--main/src/cgeo/geocaching/IWaypoint.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/main/src/cgeo/geocaching/IWaypoint.java b/main/src/cgeo/geocaching/IWaypoint.java
new file mode 100644
index 0000000..5fbbfb4
--- /dev/null
+++ b/main/src/cgeo/geocaching/IWaypoint.java
@@ -0,0 +1,21 @@
+/**
+ *
+ */
+package cgeo.geocaching;
+
+import cgeo.geocaching.enumerations.WaypointType;
+import cgeo.geocaching.geopoint.Geopoint;
+
+/**
+ * @author blafoo
+ *
+ */
+public interface IWaypoint extends ILogable {
+
+ public abstract Integer getId();
+
+ public abstract Geopoint getCoords();
+
+ public abstract WaypointType getWaypointType();
+
+}