mirror of
https://github.com/tumic0/GPXSee.git
synced 2025-01-19 04:02:09 +01:00
29 lines
604 B
C++
29 lines
604 B
C++
#ifndef PATH_H
|
|
#define PATH_H
|
|
|
|
#include <QVector>
|
|
#include "coordinates.h"
|
|
|
|
class PathPoint
|
|
{
|
|
public:
|
|
PathPoint() :
|
|
_coordinates(Coordinates()), _distance(NAN) {}
|
|
PathPoint(const Coordinates &coordinates, qreal distance)
|
|
: _coordinates(coordinates), _distance(distance) {}
|
|
|
|
const Coordinates &coordinates() const {return _coordinates;}
|
|
qreal distance() const {return _distance;}
|
|
|
|
private:
|
|
Coordinates _coordinates;
|
|
qreal _distance;
|
|
};
|
|
|
|
Q_DECLARE_TYPEINFO(PathPoint, Q_PRIMITIVE_TYPE);
|
|
QDebug operator<<(QDebug dbg, const PathPoint &point);
|
|
|
|
typedef QVector<PathPoint> Path;
|
|
|
|
#endif // PATH_H
|