From 488a7a8b217f3636b2887257e38e8477041b566e Mon Sep 17 00:00:00 2001 From: Renaud G Date: Mon, 20 Jan 2014 07:52:58 +0100 Subject: adding parantheses management (unworking yet) --- node/parenthesesnode.h | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 node/parenthesesnode.h (limited to 'node/parenthesesnode.h') diff --git a/node/parenthesesnode.h b/node/parenthesesnode.h new file mode 100644 index 0000000..3347ba4 --- /dev/null +++ b/node/parenthesesnode.h @@ -0,0 +1,17 @@ +#ifndef PARENTHESESNODE_H +#define PARENTHESESNODE_H + +#include "executionnode.h" + +class ParenthesesNode : public ExecutionNode +{ +public: + ParenthesesNode(); + virtual void run(ExecutionNode* previous = NULL)=0; + + void setInternelNode(ExecutionNode* node); +private: + ExecutionNode* m_internalNode; +}; + +#endif // PARENTHESESNODE_H -- cgit v1.2.3-70-g09d2