aboutsummaryrefslogtreecommitdiffstats
path: root/main/src/cgeo/geocaching/files/GPX11Parser.java
blob: 52a6ae379c67e282d73d18bbc40d718b7792d21b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package cgeo.geocaching.files;

import android.sax.Element;

public final class GPX11Parser extends GPXParser {

    public GPX11Parser(int listIdIn) {
        super(listIdIn, "http://www.topografix.com/GPX/1/1", "1.1");
    }

    @Override
    protected Element getCacheParent(Element waypoint) {
        return waypoint.getChild(namespace, "extensions");
    }

}