mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-07-17 04:14:24 +02:00
16 lines
280 B
C++
16 lines
280 B
C++
#ifndef MERCATOR_H
|
|
#define MERCATOR_H
|
|
|
|
#include "ct.h"
|
|
|
|
class Mercator : public CT
|
|
{
|
|
public:
|
|
virtual CT *clone() const {return new Mercator(*this);}
|
|
|
|
virtual QPointF ll2xy(const Coordinates &c) const;
|
|
virtual Coordinates xy2ll(const QPointF &p) const;
|
|
};
|
|
|
|
#endif // MERCATOR_H
|