aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/keepdiceexecnode.cpp
diff options
context:
space:
mode:
authorobiwankennedy <renaud@rolisteam.org>2014-01-21 16:22:59 +0100
committerobiwankennedy <renaud@rolisteam.org>2014-01-21 16:22:59 +0100
commit2d3746dd5cd992eab00e5aab60e1f4ee28eb257a (patch)
tree757231f4e9b9d0d9857d820710ee9087383858ae /node/keepdiceexecnode.cpp
parent6a7d867b25aa3d929789949acfc2d258f473f0c7 (diff)
downloadOneRoll-2d3746dd5cd992eab00e5aab60e1f4ee28eb257a.tar.gz
OneRoll-2d3746dd5cd992eab00e5aab60e1f4ee28eb257a.zip
Update keepdiceexecnode.cpp
toString
Diffstat (limited to 'node/keepdiceexecnode.cpp')
-rw-r--r--node/keepdiceexecnode.cpp5
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");
+}