X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/29c93cc57d2f7715c58b4e577440bc580a47bd8a..9e405703f8282683491c5652bb1d4cd7cdb135af:/src/gpx.h diff --git a/src/gpx.h b/src/gpx.h index d8f7d4e2..5591923f 100644 --- a/src/gpx.h +++ b/src/gpx.h @@ -30,6 +30,7 @@ G_BEGIN_DECLS * Options adapting GPX writing. */ typedef struct { + // NB force options only apply to trackpoints gboolean force_ele; /// Force ele field gboolean force_time; /// Force time field gboolean hidden; /// Write invisible tracks/waypoints (default is yes) @@ -40,6 +41,9 @@ gboolean a_gpx_read_file ( VikTrwLayer *trw, FILE *f ); void a_gpx_write_file ( VikTrwLayer *trw, FILE *f, GpxWritingOptions *options ); void a_gpx_write_track_file ( VikTrack *trk, FILE *f, GpxWritingOptions *options ); +gchar* a_gpx_write_tmp_file ( VikTrwLayer *vtl, GpxWritingOptions *options ); +gchar* a_gpx_write_track_tmp_file ( VikTrack *trk, GpxWritingOptions *options ); + G_END_DECLS #endif