mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-07 12:05:14 +01:00
15 lines
178 B
C++
15 lines
178 B
C++
#ifndef UTM_H
|
|
#define UTM_H
|
|
|
|
#include "conversion.h"
|
|
|
|
class Coordinates;
|
|
|
|
namespace UTM
|
|
{
|
|
int zone(const Coordinates &c);
|
|
Conversion::Setup setup(int zone);
|
|
}
|
|
|
|
#endif // UTM_H
|