mirror of
				https://github.com/ciphervance/supercell-wx.git
				synced 2025-11-04 02:00:05 +00:00 
			
		
		
		
	All used functions are constant, and don't require unique instantiations for thread safety.
		
			
				
	
	
		
			24 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
	
		
			368 B
		
	
	
	
		
			C++
		
	
	
	
	
	
#pragma once
 | 
						|
 | 
						|
#include <GeographicLib/Geodesic.hpp>
 | 
						|
 | 
						|
namespace scwx
 | 
						|
{
 | 
						|
namespace qt
 | 
						|
{
 | 
						|
namespace util
 | 
						|
{
 | 
						|
namespace GeographicLib
 | 
						|
{
 | 
						|
 | 
						|
/**
 | 
						|
 * Get the default geodesic for the WGS84 ellipsoid.
 | 
						|
 *
 | 
						|
 * return WGS84 ellipsoid geodesic
 | 
						|
 */
 | 
						|
const ::GeographicLib::Geodesic& DefaultGeodesic();
 | 
						|
 | 
						|
} // namespace GeographicLib
 | 
						|
} // namespace util
 | 
						|
} // namespace qt
 | 
						|
} // namespace scwx
 |