diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-16 23:17:02 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-16 23:17:02 +0300 |
commit | d4d1b73adc682457c6950d96113c7468107872b0 (patch) | |
tree | a10743a771e6e0567a87bf4027c815c98c3de0e3 /src/nodes | |
parent | 0c41fdd6dfad9a3b6e0988a4e99241c3ff7aca1f (diff) | |
download | paranucker-d4d1b73adc682457c6950d96113c7468107872b0.tar.gz paranucker-d4d1b73adc682457c6950d96113c7468107872b0.tar.bz2 paranucker-d4d1b73adc682457c6950d96113c7468107872b0.tar.xz paranucker-d4d1b73adc682457c6950d96113c7468107872b0.zip |
Add parsing node SCOPE_REF.
Diffstat (limited to 'src/nodes')
-rw-r--r-- | src/nodes/ref/scope_ref.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/ref/scope_ref.h b/src/nodes/ref/scope_ref.h new file mode 100644 index 0000000..46403d1 --- /dev/null +++ b/src/nodes/ref/scope_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_SCOPEREFNODE_H +#define NODES_REF_SCOPEREFNODE_H + +#include "nodes/base/ref.h" + +#include <string> + +struct ScopeRefNode : public RefNode +{ + ScopeRefNode() : + RefNode() + { + } +}; + +#endif // NODES_REF_SCOPEREFNODE_H |