blob: d667e01f3ebc253020fdafff8e6f454a63422a63 (
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
|
#ifndef COUNTEXECUTENODE_H
#define COUNTEXECUTENODE_H
#include "executionnode.h"
#include "validator.h"
#include "scalarresult.h"
class CountExecuteNode : public ExecutionNode
{
public:
CountExecuteNode();
virtual void run(ExecutionNode* previous);
virtual void setValidator(Validator* );
private:
Validator* m_validator;
ScalarResult* m_scalarResult;
};
#endif // COUNTEXECUTENODE_H
|