diff options
| author | 2014-01-21 16:27:50 +0100 | |
|---|---|---|
| committer | 2014-01-21 16:27:50 +0100 | |
| commit | 8462743297ae704e4c5e3da81b2fef4fe2137dc2 (patch) | |
| tree | bf1eebea9fe7d5140743ee8fae635d87a7381a27 /node/parenthesesnode.h | |
| parent | 0dd8db8bfb8272ab9c6875660831000e8df40cb0 (diff) | |
| download | OneRoll-8462743297ae704e4c5e3da81b2fef4fe2137dc2.tar.gz OneRoll-8462743297ae704e4c5e3da81b2fef4fe2137dc2.zip | |
Update parenthesesnode.h
toString
Diffstat (limited to 'node/parenthesesnode.h')
| -rw-r--r-- | node/parenthesesnode.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/node/parenthesesnode.h b/node/parenthesesnode.h index 3347ba4..005345b 100644 --- a/node/parenthesesnode.h +++ b/node/parenthesesnode.h @@ -7,9 +7,10 @@ class ParenthesesNode : public ExecutionNode { public: ParenthesesNode(); - virtual void run(ExecutionNode* previous = NULL)=0; + virtual void run(ExecutionNode* previous = NULL); void setInternelNode(ExecutionNode* node); + virtual QString toString()const; private: ExecutionNode* m_internalNode; }; |