memgraph/cypher/ast/queries.hpp
2015-09-13 11:34:17 +02:00

23 lines
380 B
C++

#ifndef MEMGRAPH_CYPHER_AST_QUERIES_HPP
#define MEMGRAPH_CYPHER_AST_QUERIES_HPP
#include "ast_node.hpp"
#include "match.hpp"
#include "return.hpp"
namespace ast
{
struct ReadQuery : public AstNode<ReadQuery>
{
ReadQuery(Match* match, ReturnList* return_list)
: match(match), return_list(return_list) {}
Match* match;
ReturnList* return_list;
};
}
#endif