001// License: GPL. For details, see LICENSE file.
002package org.openstreetmap.josm.data.gpx;
003
004import java.util.Collection;
005import java.util.LinkedList;
006
007public class GpxRoute extends WithAttributes {
008 public Collection<WayPoint> routePoints = new LinkedList<WayPoint>();
009}