subsurface/divesitehelpers.h
Paul-Erik Törrönen cfa5403192 Fix typo
Loockup -> Lookup

Signed-off-by: Paul-Erik Törrönen <poltsi@777-team.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-05-21 16:05:09 -07:00

17 lines
318 B
C++

#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