//License: GPLv2 or later
//Copyright 2007 by Raphael Mack and others

package org.openstreetmap.josm.data.gpx;

import java.util.Collection;
import java.util.LinkedList;

public class GpxTrack extends WithAttributes {
    public Collection<Collection<WayPoint>> trackSegs
        = new LinkedList<Collection<WayPoint>>();
}
