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

26 lines
408 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"
2016-09-19 00:56:10 +02:00
#include "graph.h"
2016-08-09 01:16:19 +02:00
class Route
{
public:
Route(const QVector<Waypoint> &data);
const QVector<Waypoint> &route() const {return _data;}
2016-09-19 00:56:10 +02:00
Graph elevation() const;
2016-08-09 01:16:19 +02:00
qreal distance() const;
2016-09-19 23:35:04 +02:00
bool isNull() const {return (_data.count() < 2);}
2016-08-09 01:16:19 +02:00
private:
const QVector<Waypoint> &_data;
2016-09-19 23:35:04 +02:00
QVector<qreal> _distance;
2016-08-09 01:16:19 +02:00
};
#endif // ROUTE_H