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

21 lines
293 B
C++

#ifndef MEMGRAPH_CYPHER_AST_START_HPP
#define MEMGRAPH_CYPHER_AST_START_HPP
#include "ast_node.hpp"
#include "queries.hpp"
namespace ast
{
struct Start : public AstNode<Start>
{
Start(ReadQuery* read_query)
: read_query(read_query) {}
ReadQuery* read_query;
};
};
#endif