sequence encapsulation
This commit is contained in:
+6
-1
@@ -2,11 +2,13 @@
|
||||
#define NODEGRAPH_H
|
||||
|
||||
#include <QVector>
|
||||
#include <QObject>
|
||||
|
||||
#include "nodes/node.h"
|
||||
|
||||
class NodeGraph
|
||||
class NodeGraph : public QObject
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
NodeGraph();
|
||||
|
||||
@@ -48,6 +50,9 @@ public:
|
||||
*/
|
||||
Node* OutputNode();
|
||||
|
||||
signals:
|
||||
void NodeGraphChanged();
|
||||
|
||||
private:
|
||||
NodePtr output_node_;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user