aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/startingnode.h
diff options
context:
space:
mode:
Diffstat (limited to 'node/startingnode.h')
-rw-r--r--node/startingnode.h19
1 files changed, 18 insertions, 1 deletions
diff --git a/node/startingnode.h b/node/startingnode.h
index ccb7c87..ebe28c0 100644
--- a/node/startingnode.h
+++ b/node/startingnode.h
@@ -3,13 +3,30 @@
#include "executionnode.h"
+/**
+ * @brief The StartingNode class is an ExecutionNode, StartingNode is dedicated to be the first node
+ * in the execution tree.
+ */
class StartingNode : public ExecutionNode
{
public:
+ /**
+ * @brief StartingNode
+ */
StartingNode();
-
+ /**
+ * @brief run
+ */
virtual void run(ExecutionNode*);
+ /**
+ * @brief toString
+ * @return
+ */
virtual QString toString()const;
+ /**
+ * @brief getPriority
+ * @return
+ */
virtual qint64 getPriority() const;
};