blob: e5c1dc2d114c064180f7859b728d0d0575ecf99f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
#ifndef ALLSAMENODE_H
#define ALLSAMENODE_H
#include "executionnode.h"
#include "result/diceresult.h"
#include "validator.h"
class AllSameNode : public ExecutionNode
{
public:
AllSameNode();
// virtual ~AllSameNode();
virtual void run(ExecutionNode* previous);
/**
* @brief toString
* @return
*/
virtual QString toString(bool withLabel) const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
virtual ExecutionNode* getCopy() const;
private:
DiceResult* m_diceResult;
};
#endif // FILTERNODE_H
|