1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef DIVESITEHELPERS_H #define DIVESITEHELPERS_H #include "units.h" #include <QThread> class ReverseGeoLookupThread : public QThread { Q_OBJECT public: static ReverseGeoLookupThread *instance(); void run() Q_DECL_OVERRIDE; private: ReverseGeoLookupThread(QObject *parent = 0); }; #endif // DIVESITEHELPERS_H