diff options
| author | 2020-01-30 01:27:15 +0100 | |
|---|---|---|
| committer | 2020-03-28 02:05:05 +0100 | |
| commit | 653ba9395a36cc20ec1d68c9a9cae78973fa334c (patch) | |
| tree | 72753ed3bdca117baf001cdf8251b1fb22276eeb /node/filternode.h | |
| parent | 22d71d0032e2f44a8f267895aea3bd87864791b3 (diff) | |
| download | OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.tar.gz OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.zip | |
add unicity and repeat function part2
Diffstat (limited to 'node/filternode.h')
| -rw-r--r-- | node/filternode.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/node/filternode.h b/node/filternode.h index 77ae7b6..7af6fe2 100644 --- a/node/filternode.h +++ b/node/filternode.h @@ -4,7 +4,8 @@ #include "executionnode.h" #include "result/diceresult.h" -#include "validator.h" + +class ValidatorList; class FilterNode : public ExecutionNode { @@ -16,7 +17,7 @@ public: /** * @brief setValidator */ - virtual void setValidator(Validator*); + virtual void setValidatorList(ValidatorList*); /** * @brief toString * @return @@ -32,7 +33,7 @@ public: private: DiceResult* m_diceResult; - Validator* m_validator; + ValidatorList* m_validatorList; bool m_eachValue; }; |