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

17 lines
194 B
C
Raw Normal View History

2016-09-19 00:55:03 +02:00
#ifndef GRAPH_H
#define GRAPH_H
#include <QVector>
class Graph
{
public:
enum Type {Distance, Time};
QVector<qreal> distance;
QVector<qreal> time;
QVector<qreal> y;
};
#endif // GRAPH_H