diff options
Diffstat (limited to 'node/executionnode.h')
| -rw-r--r-- | node/executionnode.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/node/executionnode.h b/node/executionnode.h index ef5fce8..e10ccb6 100644 --- a/node/executionnode.h +++ b/node/executionnode.h @@ -27,7 +27,7 @@ public: * @brief getResult * @return */ - Result* getResult(); + virtual Result* getResult(); /** * @brief setNextNode */ @@ -37,6 +37,11 @@ public: * @return */ ExecutionNode* getNextNode(); + /** + * @brief getPreviousNode + * @return + */ + virtual ExecutionNode* getPreviousNode() const; /** * @brief toString * @return @@ -59,6 +64,10 @@ public: */ virtual QString getHelp(); protected: + /** + * @brief m_nextNode + */ + ExecutionNode* m_previousNode; /** * @brief m_result */ |