memgraph/cypher/ast/start.hpp
2015-10-18 19:44:00 +02:00

23 lines
414 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, WriteQuery* write_query)
: read_query(read_query), write_query(write_query) {}
ReadQuery* read_query;
WriteQuery* write_query;
// ReadWriteQuery* read_write_query;
};
};
#endif