mirror of
				https://github.com/subsurface/subsurface.git
				synced 2025-02-19 22:16:15 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
	
		
			390 B
		
	
	
	
		
			C++
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0
 | |
| #ifndef DIVESITEHELPERS_H
 | |
| #define DIVESITEHELPERS_H
 | |
| 
 | |
| #include "units.h"
 | |
| #include <QThread>
 | |
| 
 | |
| class ReverseGeoLookupThread : public QThread {
 | |
| Q_OBJECT
 | |
| public:
 | |
| 	static ReverseGeoLookupThread *instance();
 | |
| 	void lookup(struct dive_site *ds);
 | |
| 	void run() Q_DECL_OVERRIDE;
 | |
| 
 | |
| private:
 | |
| 	ReverseGeoLookupThread(QObject *parent = 0);
 | |
| };
 | |
| 
 | |
| #endif // DIVESITEHELPERS_H
 |