From d5876d9b88c2f695592338335308a32e584d86a4 Mon Sep 17 00:00:00 2001 From: Renaud G Date: Tue, 1 Nov 2016 12:10:54 +0100 Subject: -add management of string node to display text in some condition. --- node/stringnode.h | 18 ++++++++++++++++-- 1 file changed, 16 insertions(+), 2 deletions(-) (limited to 'node/stringnode.h') diff --git a/node/stringnode.h b/node/stringnode.h index 6f01fe8..cf70d02 100644 --- a/node/stringnode.h +++ b/node/stringnode.h @@ -1,11 +1,25 @@ #ifndef STRINGNODE_H #define STRINGNODE_H +#include "node/executionnode.h" +#include "result/stringresult.h" -class StringNode +/** + * @brief The StringNode class is an ExecutionNode. It is dedicated to store string and display result. + */ +class StringNode : public ExecutionNode { public: StringNode(); + void run(ExecutionNode* previous); + void setString(QString str); + virtual QString toString(bool withLabel)const; + virtual qint64 getPriority() const; + +private: + QString m_data; + StringResult* m_stringResult; + }; -#endif // STRINGNODE_H \ No newline at end of file +#endif // STRINGNODE_H -- cgit v1.2.3-70-g09d2