mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-02-07 20:15:13 +01:00
13 lines
165 B
C++
13 lines
165 B
C++
#ifndef CRS_H
|
|
#define CRS_H
|
|
|
|
#include "projection.h"
|
|
|
|
namespace CRS
|
|
{
|
|
Projection projection(const QString &crs);
|
|
Projection projection(int id);
|
|
}
|
|
|
|
#endif // CRS_H
|