aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--node/sortresult.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/node/sortresult.cpp b/node/sortresult.cpp
index c75d5e3..8a0e58d 100644
--- a/node/sortresult.cpp
+++ b/node/sortresult.cpp
@@ -96,3 +96,14 @@ QString SortResultNode::toString() const
{
return "SortResultNode";
}
+qint64 SortResultNode::getPriority() const
+{
+ qint64 priority=0;
+ if(NULL!=m_nextNode)
+ {
+ priority = m_nextNode->getPriority();
+ }
+
+
+ return priority;
+}