diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-11-11 10:50:55 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-11-11 12:36:49 -0800 |
commit | 136b87e7c00b79ba8ee316ecf66dbc326e78c823 (patch) | |
tree | 855e8a706b27b243f2fafc270b6b6cf7e35f9d09 /gpslocation.h | |
parent | 111a153295dd50822dfe84da7b45ba06cac7bc84 (diff) | |
download | subsurface-136b87e7c00b79ba8ee316ecf66dbc326e78c823.tar.gz |
Location service: Add GPS location infrastructure for Subsurface-mobile
This doesn't do a thing - just adds the empty class and sets up the Cmake
file so it finds the required Qt components for Subsurface-mobile.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'gpslocation.h')
-rw-r--r-- | gpslocation.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/gpslocation.h b/gpslocation.h new file mode 100644 index 000000000..68f574bd7 --- /dev/null +++ b/gpslocation.h @@ -0,0 +1,16 @@ +#ifndef GPSLOCATION_H +#define GPSLOCATION_H + +#include <QGeoCoordinate> + +class GpsLocation +{ +public: + GpsLocation(); + +signals: + +public slots: +}; + +#endif // GPSLOCATION_H |