summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 19:25:39 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 19:25:39 +0300
commitebc04af9b4de6836fd3b718da8f54d9a036d291d (patch)
tree14861c6e8ca95a685ad709d537ab2709af25130d /src/nodes
parent0ded0bdb3afae52e5c645b20c4a0e6fdcf5a6284 (diff)
downloadparanucker-ebc04af9b4de6836fd3b718da8f54d9a036d291d.tar.gz
paranucker-ebc04af9b4de6836fd3b718da8f54d9a036d291d.tar.bz2
paranucker-ebc04af9b4de6836fd3b718da8f54d9a036d291d.tar.xz
paranucker-ebc04af9b4de6836fd3b718da8f54d9a036d291d.zip
Add parsing node LABEL_DECL.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/decl/label_decl.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/decl/label_decl.h b/src/nodes/decl/label_decl.h
new file mode 100644
index 0000000..e128a4e
--- /dev/null
+++ b/src/nodes/decl/label_decl.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_DECL_LABELDECLNODE_H
+#define NODES_DECL_LABELDECLNODE_H
+
+#include "nodes/base/decl.h"
+
+#include <string>
+
+struct LabelDeclNode : public DeclNode
+{
+ LabelDeclNode() :
+ DeclNode()
+ {
+ }
+};
+
+#endif // NODES_DECL_LABELDECLNODE_H