blob: 68c195674260b95996da70f843565903cd3aac96 (
plain) (
blame)
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 ReverseGeoLoockupThread : public QThread {
Q_OBJECT
public:
static ReverseGeoLoockupThread *instance();
void run() Q_DECL_OVERRIDE;
private:
ReverseGeoLoockupThread(QObject *parent = 0);
};
#endif // DIVESITEHELPERS_H
|