aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/node/parenthesesnode.h
diff options
context:
space:
mode:
authorRenaud G <renaud@rolisteam.org>2014-01-20 07:52:58 +0100
committerRenaud G <renaud@rolisteam.org>2014-01-20 07:52:58 +0100
commit488a7a8b217f3636b2887257e38e8477041b566e (patch)
tree7ba1c3d71ca6965472d4f5402a77890bef63b9c1 /node/parenthesesnode.h
parent33329db82c9e9be5a21e15f8a61249a0d5f0a178 (diff)
downloadOneRoll-488a7a8b217f3636b2887257e38e8477041b566e.tar.gz
OneRoll-488a7a8b217f3636b2887257e38e8477041b566e.zip
adding parantheses management (unworking yet)
Diffstat (limited to 'node/parenthesesnode.h')
-rw-r--r--node/parenthesesnode.h17
1 files changed, 17 insertions, 0 deletions
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