summaryrefslogtreecommitdiff
path: root/src/nodes/functiontypenode.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-03 01:40:33 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-03 01:40:33 +0300
commit35109669823accf98cd1563e3d4f9a3aceaf0207 (patch)
tree674757ffdbe482301517fd1f65dbbb0f237a76b9 /src/nodes/functiontypenode.h
parent6b2ceaff815c734a0052c7b08315cc560c038882 (diff)
downloadparanucker-35109669823accf98cd1563e3d4f9a3aceaf0207.tar.gz
paranucker-35109669823accf98cd1563e3d4f9a3aceaf0207.tar.bz2
paranucker-35109669823accf98cd1563e3d4f9a3aceaf0207.tar.xz
paranucker-35109669823accf98cd1563e3d4f9a3aceaf0207.zip
Add files for FUNCTION_TYPE node.
Diffstat (limited to 'src/nodes/functiontypenode.h')
-rw-r--r--src/nodes/functiontypenode.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/nodes/functiontypenode.h b/src/nodes/functiontypenode.h
new file mode 100644
index 0000000..9c6a963
--- /dev/null
+++ b/src/nodes/functiontypenode.h
@@ -0,0 +1,31 @@
+/*
+ * Copyright (C) 2015 Andrei Karas
+ *
+ * This file is part of AstDumper.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 3 of the License, or
+ * any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+#ifndef NODES_FUNCTIONTYPENODE_H
+#define NODES_FUNCTIONTYPENODE_H
+
+#include "nodes/node.h"
+
+#include <string>
+
+struct FunctionTypeNode : public Node
+{
+};
+
+#endif // NODES_FUNCTIONTYPENODE_H