summaryrefslogtreecommitdiff
path: root/src/nodes
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-13 23:26:42 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-13 23:26:42 +0300
commitbf0ce2f8cf8370d27ebacc3edc52e4a6512d1758 (patch)
tree7ca491d6afcf3f35be28a0a44abfa9b5e5407d0b /src/nodes
parent9d1e3a54184b6f0e4d4979b8fe07a1873b37ca16 (diff)
downloadparanucker-bf0ce2f8cf8370d27ebacc3edc52e4a6512d1758.tar.gz
paranucker-bf0ce2f8cf8370d27ebacc3edc52e4a6512d1758.tar.bz2
paranucker-bf0ce2f8cf8370d27ebacc3edc52e4a6512d1758.tar.xz
paranucker-bf0ce2f8cf8370d27ebacc3edc52e4a6512d1758.zip
Add parsing node OBJ_TYPE_REF.
Diffstat (limited to 'src/nodes')
-rw-r--r--src/nodes/ref/objtype_ref.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/ref/objtype_ref.h b/src/nodes/ref/objtype_ref.h
new file mode 100644
index 0000000..ab8abb9
--- /dev/null
+++ b/src/nodes/ref/objtype_ref.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_REF_OBJTYPEREFNODE_H
+#define NODES_REF_OBJTYPEREFNODE_H
+
+#include "nodes/base/ref.h"
+
+#include <string>
+
+struct ObjTypeRefNode : public RefNode
+{
+ ObjTypeRefNode() :
+ RefNode()
+ {
+ }
+};
+
+#endif // NODES_REF_OBJTYPEREFNODE_H