aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2014-01-30 11:51:55 +0100
committerobiwankennedy <renaud@rolisteam.org>2014-01-30 11:51:55 +0100
commitb097b1160dbb01971e76c974ac5d44856ba71fc8 (patch)
tree00ecfb1fc5c2d10e57965e31ef15430366eb1a38 /node
parent38fcd47e0f822bacc1c1f677a9326570ba408ee4 (diff)
downloadOneRoll-b097b1160dbb01971e76c974ac5d44856ba71fc8.tar.gz
OneRoll-b097b1160dbb01971e76c974ac5d44856ba71fc8.zip
Update countexecutenode.cpp
getPriority
Diffstat (limited to 'node')
-rw-r--r--node/countexecutenode.cpp11
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;
+}