diff options
| author | 2020-03-28 01:08:11 +0000 | |
|---|---|---|
| committer | 2020-03-28 01:08:11 +0000 | |
| commit | 944072519b4e7bc31e93024ece61b1079f7427a5 (patch) | |
| tree | 522475f7c4d5dade1c0b3482ab35d3f625b99ebe /node/countexecutenode.h | |
| parent | 932d863c2a2c9b08d8ce1f4e1041e5795daedc6d (diff) | |
| parent | 088b2fa45dc2c763187109ec7d77f9eb096e498e (diff) | |
| download | OneRoll-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/countexecutenode.h')
| -rw-r--r-- | node/countexecutenode.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/node/countexecutenode.h b/node/countexecutenode.h index 8969a41..37b7a4f 100644 --- a/node/countexecutenode.h +++ b/node/countexecutenode.h @@ -4,8 +4,8 @@ #include "executionnode.h" #include "result/scalarresult.h" -#include "validator.h" +class ValidatorList; /** * @brief The CountExecuteNode class */ @@ -25,7 +25,7 @@ public: /** * @brief setValidator */ - virtual void setValidator(Validator*); + virtual void setValidatorList(ValidatorList*); /** * @brief toString * @return @@ -44,7 +44,7 @@ public: private: ScalarResult* m_scalarResult; - Validator* m_validator; + ValidatorList* m_validatorList; }; #endif // COUNTEXECUTENODE_H |