diff options
| author | 2014-01-21 16:21:19 +0100 | |
|---|---|---|
| committer | 2014-01-21 16:21:19 +0100 | |
| commit | dde4d3a79dbf43d5a378503fe5903d695596db39 (patch) | |
| tree | 982f0a9a9cfae908fb747719abe43c0637bf552d | |
| parent | 48061b93c0762b18ad7d36a9f47373fb927905ac (diff) | |
| download | OneRoll-dde4d3a79dbf43d5a378503fe5903d695596db39.tar.gz OneRoll-dde4d3a79dbf43d5a378503fe5903d695596db39.zip | |
Update executionnode.h
toString
| -rw-r--r-- | node/executionnode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/node/executionnode.h b/node/executionnode.h index 920ef56..a179c5d 100644 --- a/node/executionnode.h +++ b/node/executionnode.h @@ -2,7 +2,7 @@ #define EXECUTIONNODE_H #include "result.h" - +#include <QDebug> class ExecutionNode { public: @@ -12,6 +12,7 @@ public: Result* getResult(); void setNextNode(ExecutionNode*); ExecutionNode* getNextNode(); + virtual QString toString()const=0; protected: Result* m_result; ExecutionNode* m_nextNode; |