diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-06-06 17:52:07 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-06-06 17:52:07 +0300 |
commit | 13cce0744e367b389378e388253cbacdbd2599ed (patch) | |
tree | c6e0647657a442beac9586d2b9381d0746ff3225 /src/nodes/returnexpr.h | |
parent | 00ee65902beac5b83a85cd5519c89323813b3d72 (diff) | |
download | paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.gz paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.bz2 paranucker-13cce0744e367b389378e388253cbacdbd2599ed.tar.xz paranucker-13cce0744e367b389378e388253cbacdbd2599ed.zip |
Remove word node from node file names.
Diffstat (limited to 'src/nodes/returnexpr.h')
-rw-r--r-- | src/nodes/returnexpr.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/src/nodes/returnexpr.h b/src/nodes/returnexpr.h new file mode 100644 index 0000000..efdcc83 --- /dev/null +++ b/src/nodes/returnexpr.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_RETURNEXPRNODE_H +#define NODES_RETURNEXPRNODE_H + +#include "nodes/base/expr.h" + +#include <string> + +struct ReturnExprNode : public ExprNode +{ + ReturnExprNode() : + ExprNode() + { + } +}; + +#endif // NODES_RETURNEXPRNODE_H |