mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 19:55:53 +01:00
18 lines
280 B
C++
18 lines
280 B
C++
#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
|