1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/map/ct.h

18 lines
280 B
C
Raw Normal View History

#ifndef CT_H
#define CT_H
#include "common/coordinates.h"
#include "pointd.h"
class CT {
public:
virtual ~CT() {}
virtual CT *clone() const = 0;
virtual PointD ll2xy(const Coordinates &c) const = 0;
virtual Coordinates xy2ll(const PointD &p) const = 0;
};
#endif // CT_H