Made the track serializable.
[utils] / gps / src / org / wamblee / gps / geometry / Point.java
index 175bd8e0d766fcff71b46e37fb2c4a8b8eba963e..f3d614da8bf7d3fb7aa174429dacd90e4c17b96e 100644 (file)
 
 package org.wamblee.gps.geometry;
 
+import java.io.Serializable;
+
 
 /**
  * Represents a point in some coordinate system. 
  */
-public class Point {
+public class Point implements Serializable {
     
     private Coordinates _coordinates;
     private CoordinateSystem _system;