blob: 37b7a4f6496556315d68ce5fc3e36d4539e94494 (
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
#ifndef COUNTEXECUTENODE_H
#define COUNTEXECUTENODE_H
#include "executionnode.h"
#include "result/scalarresult.h"
class ValidatorList;
/**
* @brief The CountExecuteNode class
*/
class CountExecuteNode : public ExecutionNode
{
public:
/**
* @brief CountExecuteNode
*/
CountExecuteNode();
virtual ~CountExecuteNode();
/**
* @brief run
* @param previous
*/
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;
/**
* @brief getCopy
* @return
*/
virtual ExecutionNode* getCopy() const;
private:
ScalarResult* m_scalarResult;
ValidatorList* m_validatorList;
};
#endif // COUNTEXECUTENODE_H
|