summaryrefslogtreecommitdiff
path: root/src/nodes/functiontypenode.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-04 00:43:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-04 00:43:02 +0300
commit1b0180411fc3dbd343012ad50fdf972759f96a30 (patch)
tree5164958015688f760acde0ed1419bc66f75e538f /src/nodes/functiontypenode.h
parentb47c2d95b4df36bdf8e38d2df11567506d6452d7 (diff)
downloadparanucker-1b0180411fc3dbd343012ad50fdf972759f96a30.tar.gz
paranucker-1b0180411fc3dbd343012ad50fdf972759f96a30.tar.bz2
paranucker-1b0180411fc3dbd343012ad50fdf972759f96a30.tar.xz
paranucker-1b0180411fc3dbd343012ad50fdf972759f96a30.zip
Add base node TypeNode.
Diffstat (limited to 'src/nodes/functiontypenode.h')
-rw-r--r--src/nodes/functiontypenode.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/nodes/functiontypenode.h b/src/nodes/functiontypenode.h
index 9c6a963..98805c9 100644
--- a/src/nodes/functiontypenode.h
+++ b/src/nodes/functiontypenode.h
@@ -20,12 +20,16 @@
#ifndef NODES_FUNCTIONTYPENODE_H
#define NODES_FUNCTIONTYPENODE_H
-#include "nodes/node.h"
+#include "nodes/typenode.h"
#include <string>
-struct FunctionTypeNode : public Node
+struct FunctionTypeNode : public TypeNode
{
+ FunctionTypeNode() :
+ TypeNode()
+ {
+ }
};
#endif // NODES_FUNCTIONTYPENODE_H