improved sequence creation

This commit is contained in:
itsmattkc
2019-09-27 03:38:21 +10:00
parent e0a483065a
commit 9806c772ac
7 changed files with 150 additions and 58 deletions
+12 -1
View File
@@ -25,7 +25,8 @@
#include "common/qobjectlistcast.h"
Node::Node() :
last_processed_time_(-1)
last_processed_time_(-1),
can_be_deleted_(true)
{
}
@@ -132,6 +133,16 @@ void Node::CopyInputs(Node *source, Node *destination)
}
}
bool Node::CanBeDeleted()
{
return can_be_deleted_;
}
void Node::SetCanBeDeleted(bool s)
{
can_be_deleted_ = s;
}
rational Node::LastProcessedTime()
{
rational t;