diff options
| author | 2014-11-09 12:06:54 +0100 | |
|---|---|---|
| committer | 2014-11-09 12:06:54 +0100 | |
| commit | 8e9cad0753457ce3d245a626fb4ad693e5701703 (patch) | |
| tree | acbb9bcc426f7fc124745efd75bdd03c91c734e5 /node/executionnode.cpp | |
| parent | f02ce9666d5801b57e316bd93cd1ccba4fee5cd0 (diff) | |
| download | OneRoll-8e9cad0753457ce3d245a626fb4ad693e5701703.tar.gz OneRoll-8e9cad0753457ce3d245a626fb4ad693e5701703.zip | |
Add error management. Protect sort node after scalar result node.
Diffstat (limited to 'node/executionnode.cpp')
| -rw-r--r-- | node/executionnode.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node/executionnode.cpp b/node/executionnode.cpp index 0f42afa..6d6fe8b 100644 --- a/node/executionnode.cpp +++ b/node/executionnode.cpp @@ -22,3 +22,7 @@ ExecutionNode* ExecutionNode::getNextNode() { return m_nextNode; } +QList<ExecutionNode::ERROR_CODE> ExecutionNode::getErrorList() +{ + return m_errors; +} |