X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=altoslib%2FAltosMapPathPoint.java;h=c23d8567bda162428833cdbdb6c4c3b2f81ea758;hb=b13893245e8c66b48e23bb2005ef6ce46e69744f;hp=5182ecfd6b21da1233bd337049a29c5212932ced;hpb=1085ec5d57e0ed5d132f2bbdac1a0b6a32c0ab4a;p=fw%2Faltos diff --git a/altoslib/AltosMapPathPoint.java b/altoslib/AltosMapPathPoint.java index 5182ecfd..c23d8567 100644 --- a/altoslib/AltosMapPathPoint.java +++ b/altoslib/AltosMapPathPoint.java @@ -16,7 +16,7 @@ * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA. */ -package org.altusmetrum.altoslib_11; +package org.altusmetrum.altoslib_13; import java.io.*; import java.lang.Math; @@ -25,6 +25,7 @@ import java.util.concurrent.*; public class AltosMapPathPoint { public AltosLatLon lat_lon; + public double time; public int state; public int hashCode() { @@ -43,8 +44,9 @@ public class AltosMapPathPoint { return lat_lon.equals(other.lat_lon) && state == other.state; } - public AltosMapPathPoint(AltosLatLon lat_lon, int state) { + public AltosMapPathPoint(AltosLatLon lat_lon, double time, int state) { this.lat_lon = lat_lon; + this.time = time; this.state = state; } }