summaryrefslogtreecommitdiff
path: root/src/nodes/type
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-06-12 00:48:22 +0300
committerAndrei Karas <akaras@inbox.ru>2015-06-12 00:48:22 +0300
commitbfd29fe799c6bae2d1cd993687ae8c477d78d681 (patch)
tree5c36f083cbe2cbf08cfa65c96bf80a764bfee3a6 /src/nodes/type
parent02ed297d531eabef1c381cfc8104d591621bc941 (diff)
downloadparanucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.gz
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.bz2
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.tar.xz
paranucker-bfd29fe799c6bae2d1cd993687ae8c477d78d681.zip
Add parsing node NULLPTR_TYPE.
Diffstat (limited to 'src/nodes/type')
-rw-r--r--src/nodes/type/nullptr_type.h35
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/type/nullptr_type.h b/src/nodes/type/nullptr_type.h
new file mode 100644
index 0000000..6376c50
--- /dev/null
+++ b/src/nodes/type/nullptr_type.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_TYPE_NULLPTRTYPENODE_H
+#define NODES_TYPE_NULLPTRTYPENODE_H
+
+#include "nodes/base/type.h"
+
+#include <string>
+
+struct NullPtrTypeNode : public TypeNode
+{
+ NullPtrTypeNode() :
+ TypeNode()
+ {
+ }
+};
+
+#endif // NODES_TYPE_NULLPTRTYPENODE_H