#ifndef MEMGRAPH_CYPHER_AST_RETURN_HPP #define MEMGRAPH_CYPHER_AST_RETURN_HPP #include "list.hpp" #include "identifier.hpp" namespace ast { struct ReturnList : public List { using List::List; }; struct Return : public AstNode { Return(ReturnList* return_list) : return_list(return_list) {} ReturnList* return_list; }; }; #endif