mirror of
https://github.com/tumic0/GPXSee.git
synced 2024-11-24 03:35:53 +01:00
Added support for time graphs
This commit is contained in:
parent
b369ffacef
commit
aa461a04b1
BIN
icons/office-chart-line-stacked.png
Normal file
BIN
icons/office-chart-line-stacked.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 727 B |
16
src/graph.h
Normal file
16
src/graph.h
Normal 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
4
src/pathitem.h
Normal file
@ -0,0 +1,4 @@
|
||||
#ifndef PATHITEM_H
|
||||
#define PATHITEM_H
|
||||
|
||||
#endif // PATHITEM_H
|
Loading…
Reference in New Issue
Block a user