summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-04 21:01:47 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-04 21:01:47 +0300
commit4ca525cbb5e619f73a066a2e529daf6fd0ca07ce (patch)
treeb623396815ae93c95c3d840b8e1d7132cf674c7c /src/nodes
parentd7c9c619e22d0171107736d058b1c42fb9545c54 (diff)
downloadparanucker-4ca525cbb5e619f73a066a2e529daf6fd0ca07ce.tar.gz
paranucker-4ca525cbb5e619f73a066a2e529daf6fd0ca07ce.tar.bz2
paranucker-4ca525cbb5e619f73a066a2e529daf6fd0ca07ce.tar.xz
paranucker-4ca525cbb5e619f73a066a2e529daf6fd0ca07ce.zip
Add parsing nodes with typ IDENTIFIER_NODE.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/identifiernode.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/identifiernode.h b/src/nodes/identifiernode.h
new file mode 100644
index 0000000..7d11951
--- /dev/null
+++ b/src/nodes/identifiernode.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