blob: c492e66dc7228e9985124e5b2d6a343ef9ccfd5f (
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
39
40
41
42
43
44
45
|
#ifndef HELPNODE_H
#define HELPNODE_H
#include "executionnode.h"
#include <QObject>
#include <QString>
#include "result/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(bool )const;
/**
* @brief getPriority
* @return
*/
virtual qint64 getPriority() const;
/**
* @brief setHelpPath
* @param path
*/
void setHelpPath(QString path);
private:
QString m_path;
};
#endif // HELPNODE_H
|