diff options
| author | 2020-01-30 01:27:15 +0100 | |
|---|---|---|
| committer | 2020-03-28 02:05:05 +0100 | |
| commit | 653ba9395a36cc20ec1d68c9a9cae78973fa334c (patch) | |
| tree | 72753ed3bdca117baf001cdf8251b1fb22276eeb /node/countexecutenode.h | |
| parent | 22d71d0032e2f44a8f267895aea3bd87864791b3 (diff) | |
| download | OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.tar.gz OneRoll-653ba9395a36cc20ec1d68c9a9cae78973fa334c.zip | |
add unicity and repeat function part2
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 |