1
0
mirror of https://github.com/tumic0/GPXSee.git synced 2024-11-24 11:45:53 +01:00

Added support for time graphs

This commit is contained in:
Martin Tůma 2016-09-19 00:55:03 +02:00
parent b369ffacef
commit aa461a04b1
3 changed files with 20 additions and 0 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 727 B

16
src/graph.h Normal file
View File

@ -0,0 +1,16 @@
#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

4
src/pathitem.h Normal file
View File

@ -0,0 +1,4 @@
#ifndef PATHITEM_H
#define PATHITEM_H
#endif // PATHITEM_H