diff options
Diffstat (limited to 'node')
| -rw-r--r-- | node/keepdiceexecnode.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/node/keepdiceexecnode.cpp b/node/keepdiceexecnode.cpp index 18e9f31..62aefb6 100644 --- a/node/keepdiceexecnode.cpp +++ b/node/keepdiceexecnode.cpp @@ -12,6 +12,7 @@ KeepDiceExecNode::KeepDiceExecNode() void KeepDiceExecNode::run(ExecutionNode* previous) { + qDebug() << "KeepDiceExecNode node"; if(NULL==previous) { return; @@ -36,3 +37,7 @@ void KeepDiceExecNode::setDiceKeepNumber(quint64 n) { m_numberOfDice = n; } +QString KeepDiceExecNode::toString() const +{ + return QString("KeepDiceExecNode"); +} |