diff options
| author | 2014-01-30 12:02:11 +0100 | |
|---|---|---|
| committer | 2014-01-30 12:02:11 +0100 | |
| commit | a91452c014a0672344e325922a636c8cb19b19ba (patch) | |
| tree | 1895714c21a977de52b02b4cf1b7daa290d66e08 /node | |
| parent | a1c26ce7c1954c77da934fd77fd73161ae6dae87 (diff) | |
| download | OneRoll-a91452c014a0672344e325922a636c8cb19b19ba.tar.gz OneRoll-a91452c014a0672344e325922a636c8cb19b19ba.zip | |
Update sortresult.cpp
getPriority
Diffstat (limited to 'node')
| -rw-r--r-- | node/sortresult.cpp | 11 |
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; +} |