aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/countexecutenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/countexecutenode.h')
-rw-r--r--node/countexecutenode.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/node/countexecutenode.h b/node/countexecutenode.h
deleted file mode 100644
index 37b7a4f..0000000
--- a/node/countexecutenode.h
+++ /dev/null
@@ -1,50 +0,0 @@
-#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