aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/explodedicenode.h
diff options
context:
space:
mode:
authorRenaud Guezennec <renaud@rolisteam.org>2020-03-28 01:08:11 +0000
committerRenaud Guezennec <renaud@rolisteam.org>2020-03-28 01:08:11 +0000
commit944072519b4e7bc31e93024ece61b1079f7427a5 (patch)
tree522475f7c4d5dade1c0b3482ab35d3f625b99ebe /node/explodedicenode.h
parent932d863c2a2c9b08d8ce1f4e1041e5795daedc6d (diff)
parent088b2fa45dc2c763187109ec7d77f9eb096e498e (diff)
downloadOneRoll-944072519b4e7bc31e93024ece61b1079f7427a5.tar.gz
OneRoll-944072519b4e7bc31e93024ece61b1079f7427a5.zip
Merge branch 'repeat2' into 'master'
All new features See merge request kde/rolisteam-diceparser!4
Diffstat (limited to 'node/explodedicenode.h')
-rw-r--r--node/explodedicenode.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/node/explodedicenode.h b/node/explodedicenode.h
index e72298a..77b4a44 100644
--- a/node/explodedicenode.h
+++ b/node/explodedicenode.h
@@ -3,8 +3,8 @@
#include "executionnode.h"
#include "result/diceresult.h"
-#include "validator.h"
-#include <QDebug>
+
+class ValidatorList;
/**
* @brief The ExplodeDiceNode class explode dice while is valid by the validator.
@@ -15,7 +15,7 @@ public:
ExplodeDiceNode();
virtual ~ExplodeDiceNode();
virtual void run(ExecutionNode* previous= nullptr);
- virtual void setValidator(Validator*);
+ virtual void setValidatorList(ValidatorList*);
virtual QString toString(bool) const;
virtual qint64 getPriority() const;
@@ -23,7 +23,7 @@ public:
protected:
DiceResult* m_diceResult;
- Validator* m_validator;
+ ValidatorList* m_validatorList= nullptr;
};
#endif // EXPLOSEDICENODE_H