mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
cfa5403192
Loockup -> Lookup Signed-off-by: Paul-Erik Törrönen <poltsi@777-team.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
17 lines
318 B
C++
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
|