sequence encapsulation

This commit is contained in:
itsmattkc
2019-05-09 00:19:36 +10:00
parent 5f0debb7ec
commit 2905dce3d9
37 changed files with 380 additions and 293 deletions
+6
View File
@@ -8,6 +8,12 @@ NodeGraph::NodeGraph() :
}
void NodeGraph::AddNode(NodePtr node)
{
nodes_.append(node);
emit NodeGraphChanged();
}
Node *NodeGraph::OutputNode()
{
return output_node_.get();