aboutsummaryrefslogtreecommitdiffstats
path: root/src/cgeo/geocaching/files/GPX10Parser.java
blob: 7bb3cb589c04e522859bc98835888985a290a59d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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;
	}

}