source: josm/trunk/src/org/openstreetmap/josm/data/gpx/GpxRoute.java@ 6380

Last change on this file since 6380 was 6380, checked in by Don-vip, 10 years ago

update license/copyright information

  • Property svn:eol-style set to native
File size: 272 bytes
Line 
1// License: GPL. For details, see LICENSE file.
2package org.openstreetmap.josm.data.gpx;
3
4import java.util.Collection;
5import java.util.LinkedList;
6
7public class GpxRoute extends WithAttributes {
8 public Collection<WayPoint> routePoints = new LinkedList<WayPoint>();
9}
Note: See TracBrowser for help on using the repository browser.