diff options
| author | 2014-01-30 11:51:55 +0100 | |
|---|---|---|
| committer | 2014-01-30 11:51:55 +0100 | |
| commit | b097b1160dbb01971e76c974ac5d44856ba71fc8 (patch) | |
| tree | 00ecfb1fc5c2d10e57965e31ef15430366eb1a38 | |
| parent | 38fcd47e0f822bacc1c1f677a9326570ba408ee4 (diff) | |
| download | OneRoll-b097b1160dbb01971e76c974ac5d44856ba71fc8.tar.gz OneRoll-b097b1160dbb01971e76c974ac5d44856ba71fc8.zip | |
Update countexecutenode.cpp
getPriority
| -rw-r--r-- | node/countexecutenode.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/node/countexecutenode.cpp b/node/countexecutenode.cpp index 736aa92..ce0249f 100644 --- a/node/countexecutenode.cpp +++ b/node/countexecutenode.cpp @@ -43,3 +43,14 @@ QString CountExecuteNode::toString() const { return "CountExecuteNode"; } +qint64 CountExecuteNode::getPriority() const +{ + qint64 priority=0; + if(NULL!=m_nextNode) + { + priority = m_nextNode->getPriority(); + } + + + return priority; +} |