aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/GPX10Parser.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgeo/geocaching/GPX10Parser.java')
-rw-r--r--src/cgeo/geocaching/GPX10Parser.java17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/GPX10Parser.java b/src/cgeo/geocaching/GPX10Parser.java
new file mode 100644
index 0000000..a1bcef4
--- /dev/null
+++ b/src/cgeo/geocaching/GPX10Parser.java
@@ -0,0 +1,17 @@
+package cgeo.geocaching;
+
+import android.sax.Element;
+
+public final class GPX10Parser extends GPXParser {
+
+ public GPX10Parser(cgeoapplication appIn, int listIdIn,
+ cgSearch searchIn) {
+ super(appIn, listIdIn, searchIn, "http://www.topografix.com/GPX/1/0", "1.0");
+ }
+
+ @Override
+ protected Element getCacheParent(Element waypoint) {
+ return waypoint;
+ }
+
+}