aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/helpnode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2014-12-09 20:41:07 +0100
committerRenaud G <renaud@rolisteam.org>2014-12-09 20:41:07 +0100
commitde38199f61635a4206eb44c8e70634086aa20538 (patch)
tree6ba0e179af79a3f8cbef50c28da5ac9c5be47b29 /node/helpnode.h
parent8d7e2cc15adf4a82ef6354fbfebfadc3a6bb075c (diff)
downloadOneRoll-de38199f61635a4206eb44c8e70634086aa20538.tar.gz
OneRoll-de38199f61635a4206eb44c8e70634086aa20538.zip
add help API
Diffstat (limited to 'node/helpnode.h')
-rw-r--r--node/helpnode.h29
1 files changed, 28 insertions, 1 deletions
diff --git a/node/helpnode.h b/node/helpnode.h
index 89aba11..f8b3f78 100644
--- a/node/helpnode.h
+++ b/node/helpnode.h
@@ -1,10 +1,37 @@
#ifndef HELPNODE_H
#define HELPNODE_H
+#include "executionnode.h"
-class HelpNode : public ExecuteNode
+#include <QObject>
+#include <QString>
+
+#include "stringresult.h"
+
+/**
+ * @brief The HelpNode class
+ */
+class HelpNode : public ExecutionNode
{
public:
+ /**
+ * @brief HelpNode
+ */
HelpNode();
+ /**
+ * @brief run
+ * @param previous
+ */
+ void run(ExecutionNode* previous);
+ /**
+ * @brief toString
+ * @return
+ */
+ virtual QString toString()const;
+ /**
+ * @brief getPriority
+ * @return
+ */
+ virtual qint64 getPriority() const;
};
#endif // HELPNODE_H