aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/executionnode.cpp
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2014-01-07 18:51:20 +0100
committerobiwankennedy <renaud@rolisteam.org>2014-01-07 18:51:20 +0100
commit9f8c675423011c381468ec43112bf8f599555ccf (patch)
tree93b1675392c28554ca4aa0199b0f231ac3681fed /node/executionnode.cpp
parentd2f424c02eb59ef14e16ae0afca3d980d6255cf6 (diff)
downloadOneRoll-9f8c675423011c381468ec43112bf8f599555ccf.tar.gz
OneRoll-9f8c675423011c381468ec43112bf8f599555ccf.zip
Update executionnode.cpp
generic API
Diffstat (limited to 'node/executionnode.cpp')
-rw-r--r--node/executionnode.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp
index cf1826d..0f42afa 100644
--- a/node/executionnode.cpp
+++ b/node/executionnode.cpp
@@ -1,7 +1,7 @@
#include "executionnode.h"
ExecutionNode::ExecutionNode()
- : m_nextNode(NULL)
+ : m_nextNode(NULL),m_result(NULL)
{
}
@@ -10,9 +10,9 @@ ExecutionNode::~ExecutionNode()
}
-DiceResult* ExecutionNode::getResult()
+Result* ExecutionNode::getResult()
{
- return &m_result;
+ return m_result;
}
void ExecutionNode::setNextNode(ExecutionNode* node)
{