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

22 lines
303 B
C++

#ifndef MEMGRAPH_CYPHER_AST_CREATE_HPP
#define MEMGRAPH_CYPHER_AST_CREATE_HPP
#include "ast_node.hpp"
#include "pattern.hpp"
#include "return.hpp"
namespace ast
{
struct Create : public AstNode<Create>
{
Create(Pattern* pattern)
: pattern(pattern) {}
Pattern* pattern;
};
}
#endif