aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/countexecutenode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/countexecutenode.h')
-rw-r--r--node/countexecutenode.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/node/countexecutenode.h b/node/countexecutenode.h
index bece965..dc90f74 100644
--- a/node/countexecutenode.h
+++ b/node/countexecutenode.h
@@ -6,13 +6,34 @@
#include "validator.h"
#include "scalarresult.h"
+/**
+ * @brief The CountExecuteNode class
+ */
class CountExecuteNode : public ExecutionNode
{
public:
+ /**
+ * @brief CountExecuteNode
+ */
CountExecuteNode();
+ /**
+ * @brief run
+ * @param previous
+ */
virtual void run(ExecutionNode* previous);
+ /**
+ * @brief setValidator
+ */
virtual void setValidator(Validator* );
+ /**
+ * @brief toString
+ * @return
+ */
virtual QString toString()const;
+ /**
+ * @brief getPriority
+ * @return
+ */
virtual qint64 getPriority() const;
private: