1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-06 14:53:21 +02:00
GPXSee/src/route.h

25 lines
392 B
C
Raw Normal View History

2016-08-09 01:16:19 +02:00
#ifndef ROUTE_H
#define ROUTE_H
#include <QVector>
#include "waypoint.h"
class Route
{
public:
Route(const QVector<Waypoint> &data);
const QVector<Waypoint> &route() const {return _data;}
QVector<QPointF> elevation() const;
2016-08-09 01:16:19 +02:00
qreal distance() const;
bool isNull() const {return (_dd.count() < 2);}
2016-08-09 01:16:19 +02:00
private:
const QVector<Waypoint> &_data;
QVector<qreal> _dd;
};
#endif // ROUTE_H