diff options
| author | 2022-04-29 10:48:09 +0200 | |
|---|---|---|
| committer | 2022-04-29 10:48:09 +0200 | |
| commit | 07c5f6ec23fcf9237a24e71adcfacabce677f818 (patch) | |
| tree | 588e8c5f82b9163181fad3581f610e6f1d88cba4 /node/filternode.h | |
| parent | a9153f1615a842cfb9e9bcda4d9071e202618569 (diff) | |
| download | OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.tar.gz OneRoll-07c5f6ec23fcf9237a24e71adcfacabce677f818.zip | |
Change file organization.
Diffstat (limited to 'node/filternode.h')
| -rw-r--r-- | node/filternode.h | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/node/filternode.h b/node/filternode.h deleted file mode 100644 index 7af6fe2..0000000 --- a/node/filternode.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef FILTERNODE_H -#define FILTERNODE_H - -#include "executionnode.h" - -#include "result/diceresult.h" - -class ValidatorList; - -class FilterNode : public ExecutionNode -{ -public: - FilterNode(); - virtual ~FilterNode(); - - virtual void run(ExecutionNode* previous); - /** - * @brief setValidator - */ - virtual void setValidatorList(ValidatorList*); - /** - * @brief toString - * @return - */ - virtual QString toString(bool withLabel) const; - /** - * @brief getPriority - * @return - */ - virtual qint64 getPriority() const; - - virtual ExecutionNode* getCopy() const; - -private: - DiceResult* m_diceResult; - ValidatorList* m_validatorList; - bool m_eachValue; -}; - -#endif // FILTERNODE_H |