summaryrefslogtreecommitdiff
path: root/src/data/path.h
blob: 381d486ef2e6f0df0f5f2eb6af2759e29cfcd698 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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