summaryrefslogtreecommitdiff
path: root/src/data/path.h
diff options
context:
space:
mode:
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