diff --git a/icons/office-chart-line-stacked.png b/icons/office-chart-line-stacked.png new file mode 100644 index 00000000..82b086bf Binary files /dev/null and b/icons/office-chart-line-stacked.png differ diff --git a/src/graph.h b/src/graph.h new file mode 100644 index 00000000..ba0205bf --- /dev/null +++ b/src/graph.h @@ -0,0 +1,16 @@ +#ifndef GRAPH_H +#define GRAPH_H + +#include + +class Graph +{ +public: + enum Type {Distance, Time}; + + QVector distance; + QVector time; + QVector y; +}; + +#endif // GRAPH_H diff --git a/src/pathitem.h b/src/pathitem.h new file mode 100644 index 00000000..adb9b867 --- /dev/null +++ b/src/pathitem.h @@ -0,0 +1,4 @@ +#ifndef PATHITEM_H +#define PATHITEM_H + +#endif // PATHITEM_H