1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 15:23:22 +02:00
GPXSee/src/data/route.h

37 lines
654 B
C
Raw Normal View History

2016-08-09 01:16:19 +02:00
#ifndef ROUTE_H
#define ROUTE_H
#include <QVector>
#include "routedata.h"
2016-09-19 00:56:10 +02:00
#include "graph.h"
2016-11-14 22:12:43 +01:00
#include "path.h"
2016-08-09 01:16:19 +02:00
class Route
{
public:
Route(const RouteData &data);
2016-08-09 01:16:19 +02:00
Path path() const;
const QVector<Waypoint> &waypoints() const {return _data;}
2016-11-14 22:12:43 +01:00
2016-09-19 00:56:10 +02:00
Graph elevation() const;
2016-08-09 01:16:19 +02:00
qreal distance() const;
const QString &name() const {return _data.name();}
const QString &description() const {return _data.description();}
2016-09-19 23:35:04 +02:00
bool isNull() const {return (_data.count() < 2);}
2016-08-09 01:16:19 +02:00
static void useDEMElevation(bool use) {_useDEMElevation = use;}
2016-08-09 01:16:19 +02:00
private:
const RouteData &_data;
2016-09-19 23:35:04 +02:00
QVector<qreal> _distance;
static bool _useDEMElevation;
2016-08-09 01:16:19 +02:00
};
#endif // ROUTE_H