blob: 27f38b3a934c4d847174b34cc0cae08accc4845f (
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
38
|
#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
|