memgraph/cypher/ast/return.hpp
2015-08-30 01:12:46 +02:00

18 lines
238 B
C++

#ifndef MEMGRAPH_CYPHER_AST_RETURN_HPP
#define MEMGRAPH_CYPHER_AST_RETURN_HPP
#include "list.hpp"
#include "identifier.hpp"
namespace ast
{
struct ReturnList : public List<Identifier, ReturnList>
{
using List::List;
};
};
#endif