summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 19:14:17 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 19:14:17 +0300
commit70026dc811a06e9b8b26ca94e56a327ec29839a0 (patch)
tree848a011ee7a72ed64186bd2eac22fc9d0b6a8e74 /src/nodes
parent4b00ff827fd0531a3cd038e57e0a0f24d5171aa3 (diff)
downloadparanucker-70026dc811a06e9b8b26ca94e56a327ec29839a0.tar.gz
paranucker-70026dc811a06e9b8b26ca94e56a327ec29839a0.tar.bz2
paranucker-70026dc811a06e9b8b26ca94e56a327ec29839a0.tar.xz
paranucker-70026dc811a06e9b8b26ca94e56a327ec29839a0.zip
Add parsing node VOID_CST.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/cst/void_cst.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/cst/void_cst.h b/src/nodes/cst/void_cst.h
new file mode 100644
index 0000000..6c81ebe
--- /dev/null
+++ b/src/nodes/cst/void_cst.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_CST_VOIDCSTNODE_H
+#define NODES_CST_VOIDCSTNODE_H
+
+#include "nodes/base/cst.h"
+
+#include <string>
+
+struct VoidCstNode : public CstNode
+{
+ VoidCstNode() :
+ CstNode()
+ {
+ }
+};
+
+#endif // NODES_CST_VOIDCSTNODE_H