1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-10-07 07:13:21 +02:00
GPXSee/src/speedgraph.h

23 lines
282 B
C++

#ifndef SPEEDGRAPH_H
#define SPEEDGRAPH_H
#include <QList>
#include "graph.h"
class SpeedGraph : public Graph
{
Q_OBJECT
public:
SpeedGraph();
void loadData(const QVector<QPointF> &data);
void clear();
private:
qreal _max;
QList<QPointF> _avg;
};
#endif // SPEEDGRAPH_H