summaryrefslogtreecommitdiff
path: root/src/nodes/identifier.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-06 17:52:07 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-06 17:52:07 +0300
commit13cce0744e367b389378e388253cbacdbd2599ed (patch)
treec6e0647657a442beac9586d2b9381d0746ff3225 /src/nodes/identifier.h
parent00ee65902beac5b83a85cd5519c89323813b3d72 (diff)
downloadparanucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.gz
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.bz2
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.xz
paranucker-13cce0744e367b389378e388253cbacdbd2599ed.zip
Remove word node from node file names.
Diffstat (limited to 'src/nodes/identifier.h')
-rw-r--r--src/nodes/identifier.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/identifier.h b/src/nodes/identifier.h
new file mode 100644
index 0000000..7d11951
--- /dev/null
+++ b/src/nodes/identifier.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_IDENTIFIERNODE_H
+#define NODES_IDENTIFIERNODE_H
+
+#include "nodes/base/node.h"
+
+#include <string>
+
+struct IdentifierNode : public Node
+{
+ IdentifierNode() :
+ Node()
+ {
+ }
+};
+
+#endif // NODES_IDENTIFIERNODE_H