summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 19:27:02 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 19:27:02 +0300
commit469c62758e704aa293cbe24d0781524268c5bc07 (patch)
tree56011b1e185702596487e8c5dda3728cf197a228 /src/nodes
parentebc04af9b4de6836fd3b718da8f54d9a036d291d (diff)
downloadparanucker-469c62758e704aa293cbe24d0781524268c5bc07.tar.gz
paranucker-469c62758e704aa293cbe24d0781524268c5bc07.tar.bz2
paranucker-469c62758e704aa293cbe24d0781524268c5bc07.tar.xz
paranucker-469c62758e704aa293cbe24d0781524268c5bc07.zip
Add parsing node USING_DECL.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/decl/using_decl.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/decl/using_decl.h b/src/nodes/decl/using_decl.h
new file mode 100644
index 0000000..f6d0ce9
--- /dev/null
+++ b/src/nodes/decl/using_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_USINGDECLNODE_H
+#define NODES_DECL_USINGDECLNODE_H
+
+#include "nodes/base/decl.h"
+
+#include <string>
+
+struct UsingDeclNode : public DeclNode
+{
+ UsingDeclNode() :
+ DeclNode()
+ {
+ }
+};
+
+#endif // NODES_DECL_USINGDECLNODE_H