diff options
| author | 2014-01-21 16:22:59 +0100 | |
|---|---|---|
| committer | 2014-01-21 16:22:59 +0100 | |
| commit | 2d3746dd5cd992eab00e5aab60e1f4ee28eb257a (patch) | |
| tree | 757231f4e9b9d0d9857d820710ee9087383858ae /node | |
| parent | 6a7d867b25aa3d929789949acfc2d258f473f0c7 (diff) | |
| download | OneRoll-2d3746dd5cd992eab00e5aab60e1f4ee28eb257a.tar.gz OneRoll-2d3746dd5cd992eab00e5aab60e1f4ee28eb257a.zip | |
Update keepdiceexecnode.cpp
toString
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"); +} |