blob: f8b3f78c40cea4a3939a5caeff5d488f1f03e650 (
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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
#ifndef HELPNODE_H
#define HELPNODE_H
#include "executionnode.h"
#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
|