-
[hikingdiary] / src / maemo5location.h
1 #ifndef MAEMO5LOCATION_H
2 #define MAEMO5LOCATION_H
3
4 #include <QObject>
5
6 class Maemo5LocationPrivate;
7 class Maemo5Location : public QObject
8 {
9     Q_OBJECT
10     public:
11         Maemo5Location(QObject* parent = 0);
12         ~Maemo5Location();
13         double getLatitude();
14         double getLongitude();
15     signals:
16         void awcp();
17         void agnss();
18         void locationUpdated();
19         void connected();
20     private:
21         Maemo5LocationPrivate* ptr;
22 };
23
24 #endif // MAEMO5LOCATION_H