diff options
| author | 2014-01-07 18:51:20 +0100 | |
|---|---|---|
| committer | 2014-01-07 18:51:20 +0100 | |
| commit | 9f8c675423011c381468ec43112bf8f599555ccf (patch) | |
| tree | 93b1675392c28554ca4aa0199b0f231ac3681fed /node | |
| parent | d2f424c02eb59ef14e16ae0afca3d980d6255cf6 (diff) | |
| download | OneRoll-9f8c675423011c381468ec43112bf8f599555ccf.tar.gz OneRoll-9f8c675423011c381468ec43112bf8f599555ccf.zip | |
Update executionnode.cpp
generic API
Diffstat (limited to 'node')
| -rw-r--r-- | node/executionnode.cpp | 6 |
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) { |