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>
This commit is contained in:
Dirk Hohndel 2016-01-07 00:08:00 -08:00
parent 0f31102020
commit a7f8a7574e
5 changed files with 162 additions and 6 deletions

View file

@ -9,6 +9,13 @@
#include <QSettings>
#include <QNetworkReply>
struct gpsTracker {
degrees_t latitude;
degrees_t longitude;
time_t when;
QString name;
};
class GpsLocation : QObject
{
Q_OBJECT