aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/files/GPX10Parser.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/cgeo/geocaching/files/GPX10Parser.java')
-rw-r--r--src/cgeo/geocaching/files/GPX10Parser.java19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/cgeo/geocaching/files/GPX10Parser.java b/src/cgeo/geocaching/files/GPX10Parser.java
new file mode 100644
index 0000000..7bb3cb5
--- /dev/null
+++ b/src/cgeo/geocaching/files/GPX10Parser.java
@@ -0,0 +1,19 @@
+package cgeo.geocaching.files;
+
+import cgeo.geocaching.cgSearch;
+import cgeo.geocaching.cgeoapplication;
+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;
+ }
+
+}