X-Git-Url: http://gitweb.fperrin.net/?p=GpsPrune.git;a=blobdiff_plain;f=src%2Ftim%2Fprune%2Fundo%2FUndoRearrangeWaypoints.java;fp=src%2Ftim%2Fprune%2Fundo%2FUndoRearrangeWaypoints.java;h=5073bfe0243c55097e2c5027cefe2a94185b0335;hp=0000000000000000000000000000000000000000;hb=ce6f2161b8596f7018d6a76bff79bc9e571f35fd;hpb=2d8cb72e84d5cc1089ce77baf1e34ea3ea2f8465 diff --git a/src/tim/prune/undo/UndoRearrangeWaypoints.java b/src/tim/prune/undo/UndoRearrangeWaypoints.java new file mode 100644 index 0000000..5073bfe --- /dev/null +++ b/src/tim/prune/undo/UndoRearrangeWaypoints.java @@ -0,0 +1,19 @@ +package tim.prune.undo; + +import tim.prune.data.Track; + +/** + * Operation to undo a waypoint rearrangement + */ +public class UndoRearrangeWaypoints extends UndoReorder +{ + /** + * Constructor + * @param inTrack track contents to copy + */ + public UndoRearrangeWaypoints(Track inTrack) + { + super(inTrack, "undo.rearrangewaypoints"); + } + +} \ No newline at end of file