aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp24
1 files changed, 24 insertions, 0 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp
new file mode 100644
index 0000000..cf1826d
--- /dev/null
+++ b/node/executionnode.cpp
@@ -0,0 +1,24 @@
+#include "executionnode.h"
+
+ExecutionNode::ExecutionNode()
+ : m_nextNode(NULL)
+{
+
+}
+ExecutionNode::~ExecutionNode()
+{
+
+}
+
+DiceResult* ExecutionNode::getResult()
+{
+ return &m_result;
+}
+void ExecutionNode::setNextNode(ExecutionNode* node)
+{
+ m_nextNode = node;
+}
+ExecutionNode* ExecutionNode::getNextNode()
+{
+ return m_nextNode;
+}