~foxtrotgps-team/foxtrotgps/trunk

« back to all changes in this revision

Viewing changes to src/route.h

  • Committer: Paul Wise
  • Date: 2018-03-06 03:32:21 UTC
  • Revision ID: pabs3@bonedaddy.net-20180306033221-lzyia8y0cpw95j1b
Remove trailing whitespace

Show diffs side-by-side

added added

removed removed

Lines of Context:
13
13
void
14
14
paint_route ();
15
15
 
16
 
/** 
 
16
/**
17
17
 * Find the bounding box of the given GSList containin waypoints.
18
18
 */
19
19
bbox_t
22
22
/**
23
23
 * Append a new waypoint at the end of the route.
24
24
 */
25
 
void 
 
25
void
26
26
append_waypoint_to_route (double lat, double lon);
27
27
 
28
28
/**
29
29
 * Delete the given waypoint from the route.
30
30
 */
31
 
void 
 
31
void
32
32
delete_waypoint_of_route (waypoint_t *wp);
33
33
 
34
34
/**