diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-16 21:13:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-16 21:13:32 +0300 |
commit | aeba935c42c31e9f2cf557aaf69dda7cf91d7fdd (patch) | |
tree | e0e8eb6cf4cf37dbd54f2a895f03576d4f97c81b /src/nodes | |
parent | 49a72e0dec3fee4644b2dfa362e08e899def1082 (diff) | |
download | paranucker-aeba935c42c31e9f2cf557aaf69dda7cf91d7fdd.tar.gz paranucker-aeba935c42c31e9f2cf557aaf69dda7cf91d7fdd.tar.bz2 paranucker-aeba935c42c31e9f2cf557aaf69dda7cf91d7fdd.tar.xz paranucker-aeba935c42c31e9f2cf557aaf69dda7cf91d7fdd.zip |
Add parsing node BIT_FIELD_REF.
Diffstat (limited to 'src/nodes')
-rw-r--r-- | src/nodes/ref/bitfield_ref.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/ref/bitfield_ref.h b/src/nodes/ref/bitfield_ref.h new file mode 100644 index 0000000..da80816 --- /dev/null +++ b/src/nodes/ref/bitfield_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_BITFIELDREFNODE_H +#define NODES_REF_BITFIELDREFNODE_H + +#include "nodes/base/ref.h" + +#include <string> + +struct BitFieldRefNode : public RefNode +{ + BitFieldRefNode() : + RefNode() + { + } +}; + +#endif // NODES_REF_BITFIELDREFNODE_H |