summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 00:39:15 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 00:39:15 +0300
commit02ed297d531eabef1c381cfc8104d591621bc941 (patch)
tree6210a4d90b1e009202bbf49c66ecec305581a9fc /src/nodes
parente6916af5a3f6a7bee468aa4df3c102b2ad80d868 (diff)
downloadparanucker-02ed297d531eabef1c381cfc8104d591621bc941.tar.gz
paranucker-02ed297d531eabef1c381cfc8104d591621bc941.tar.bz2
paranucker-02ed297d531eabef1c381cfc8104d591621bc941.tar.xz
paranucker-02ed297d531eabef1c381cfc8104d591621bc941.zip
Add parsing node BOOLEAN_TYPE.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/type/boolean_type.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/type/boolean_type.h b/src/nodes/type/boolean_type.h
new file mode 100644
index 0000000..25bbc5b
--- /dev/null
+++ b/src/nodes/type/boolean_type.h
@@ -0,0 +1,35 @@
+/*
+ * 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_TYPE_BOOLEANTYPENODE_H
+#define NODES_TYPE_BOOLEANTYPENODE_H
+
+#include "nodes/base/type.h"
+
+#include <string>
+
+struct BooleanTypeNode : public TypeNode
+{
+ BooleanTypeNode() :
+ TypeNode()
+ {
+ }
+};
+
+#endif // NODES_TYPE_BOOLEANTYPENODE_H