diff options
| author | 2015-08-20 11:36:18 +0200 | |
|---|---|---|
| committer | 2015-08-20 11:36:18 +0200 | |
| commit | 8a1c33fb342a3609ec4d22e918c5f847c59c1b91 (patch) | |
| tree | e813b281a6c78b881b811bcb931d32232b1bd435 /node/countexecutenode.cpp | |
| parent | bb413e7eab871cbc377eea0ece5444d1c758481b (diff) | |
| download | OneRoll-8a1c33fb342a3609ec4d22e918c5f847c59c1b91.tar.gz OneRoll-8a1c33fb342a3609ec4d22e918c5f847c59c1b91.zip | |
start fixing dot tree generation
Diffstat (limited to 'node/countexecutenode.cpp')
| -rw-r--r-- | node/countexecutenode.cpp | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/node/countexecutenode.cpp b/node/countexecutenode.cpp index ff3d67b..295fdad 100644 --- a/node/countexecutenode.cpp +++ b/node/countexecutenode.cpp @@ -46,10 +46,19 @@ void CountExecuteNode::run(ExecutionNode *previous) } } } -QString CountExecuteNode::toString() const +QString CountExecuteNode::toString(bool withlabel) const +{ +if(withlabel) { return "CountExecuteNode"+m_validator->toString(); } +else +{ + + return "CountExecuteNode"+m_validator->toString(); +} +} +} qint64 CountExecuteNode::getPriority() const { qint64 priority=0; |