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

21 lines
255 B
C++

#ifndef MEMGRAPH_CYPHER_AST_WHERE_HPP
#define MEMGRAPH_CYPHER_AST_WHERE_HPP
#include "ast_node.hpp"
#include "expr.hpp"
namespace ast
{
struct Where : public AstNode<Where>
{
Where(Expr* expr)
: expr(expr) {}
Expr* expr;
};
}
#endif