created new sequence dialog

This commit is contained in:
itsmattkc
2019-07-21 18:21:40 -07:00
parent 9cfed140b3
commit f8830beac7
37 changed files with 911 additions and 101 deletions
-10
View File
@@ -35,16 +35,6 @@ void NodeGraph::AddNode(Node *node)
connect(node, SIGNAL(EdgeRemoved(NodeEdgePtr)), this, SIGNAL(EdgeRemoved(NodeEdgePtr)));
}
const QString &NodeGraph::name()
{
return name_;
}
void NodeGraph::set_name(const QString &name)
{
name_ = name;
}
QList<Node *> NodeGraph::nodes()
{
return static_qobjectlist_cast<Node>(children());