mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
18 lines
321 B
C
18 lines
321 B
C
|
#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
|