X-Git-Url: https://git.street.me.uk/andy/viking.git/blobdiff_plain/2c512739651df74b9a3e575e3f401afa59db63b1..70177381ae2b6540e92c504833aeb546c38dd54b:/src/gpx.h?ds=sidebyside diff --git a/src/gpx.h b/src/gpx.h index bc66d778..5591923f 100644 --- a/src/gpx.h +++ b/src/gpx.h @@ -24,17 +24,26 @@ #include "viktrwlayer.h" +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) + gboolean is_route; /// For internal convience } GpxWritingOptions; 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