diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-01-07 00:08:00 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-01-07 21:29:05 -0800 |
commit | a7f8a7574e1fa6fd2422d151a3d5e3fc94586d5b (patch) | |
tree | 034256176d0a28705e190d122d41a2aead2fc229 /subsurface-core/gpslocation.cpp | |
parent | 0f311020205563823c71cfb68a77d156b14d352a (diff) | |
download | subsurface-a7f8a7574e1fa6fd2422d151a3d5e3fc94586d5b.tar.gz |
Create GpsListModel in order to be able to display GPS fixes
This will allow us to visualize the GPS fixes that are currently stored in the
QML UI.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'subsurface-core/gpslocation.cpp')
-rw-r--r-- | subsurface-core/gpslocation.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/subsurface-core/gpslocation.cpp b/subsurface-core/gpslocation.cpp index 9019f59c7..6106dd358 100644 --- a/subsurface-core/gpslocation.cpp +++ b/subsurface-core/gpslocation.cpp @@ -1,4 +1,5 @@ #include "gpslocation.h" +#include "gpslistmodel.h" #include "pref.h" #include "dive.h" #include "helpers.h" @@ -195,12 +196,6 @@ int GpsLocation::getGpsNum() const return geoSettings->value("count", 0).toInt(); } -struct gpsTracker { - degrees_t latitude; - degrees_t longitude; - time_t when; -}; - static void copy_gps_location(struct gpsTracker *gps, struct dive *d) { struct dive_site *ds = get_dive_site_by_uuid(d->dive_site_uuid); |