#ifndef HELPNODE_H #define HELPNODE_H #include "executionnode.h" #include #include #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