summaryrefslogtreecommitdiffstats
path: root/gpslocation.h
diff options
context:
space:
mode:
Diffstat (limited to 'gpslocation.h')
-rw-r--r--gpslocation.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/gpslocation.h b/gpslocation.h
deleted file mode 100644
index 8e26fd25e..000000000
--- a/gpslocation.h
+++ /dev/null
@@ -1,25 +0,0 @@
-#ifndef GPSLOCATION_H
-#define GPSLOCATION_H
-
-#include <QObject>
-#include <QGeoCoordinate>
-#include <QGeoPositionInfoSource>
-#include <QGeoPositionInfo>
-
-class GpsLocation : QObject
-{
- Q_OBJECT
-public:
- GpsLocation(QObject *parent);
-
-private:
- QGeoPositionInfo lastPos;
-
-signals:
-
-public slots:
- void newPosition(QGeoPositionInfo pos);
- void updateTimeout();
-};
-
-#endif // GPSLOCATION_H