aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp
index a419bec..c8c62f2 100644
--- a/node/executionnode.cpp
+++ b/node/executionnode.cpp
@@ -29,6 +29,10 @@ void ExecutionNode::setNextNode(ExecutionNode* node)
{
m_nextNode = node;
}
+void ExecutionNode::setPreviousNode(ExecutionNode* node)
+{
+ m_previousNode = node;
+}
ExecutionNode* ExecutionNode::getNextNode()
{
return m_nextNode;