summaryrefslogtreecommitdiff
path: root/src/data/path.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2020-04-12 13:31:11 +0100
committerAleks Kissinger <aleks0@gmail.com>2020-04-12 13:31:11 +0100
commitc56b682750e9f2a911a841e89e4e51b7d0608ab5 (patch)
treecaa79b5c9040c2a7c33598442e41539378e5fbd6 /src/data/path.h
parentccf98283025f9d5cc2083c87352993dce4545e71 (diff)
added support for parsing paths
Diffstat (limited to 'src/data/path.h')
-rw-r--r--src/data/path.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/data/path.h b/src/data/path.h
new file mode 100644
index 0000000..381d486
--- /dev/null
+++ b/src/data/path.h
@@ -0,0 +1,19 @@
+#ifndef PATH_H
+#define PATH_H
+
+#include "edge.h"
+
+#include <QObject>
+
+class Path : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Path(QObject *parent = nullptr);
+
+private:
+ QVector<Edge*> _edges;
+
+};
+
+#endif // PATH_H