memgraph/cypher/ast/delete.hpp
2016-01-24 16:21:46 +01:00

18 lines
229 B
C++

#pragma once
#include "ast_node.hpp"
#include "identifier.hpp"
namespace ast
{
struct Delete : public AstNode<Delete>
{
Delete(Identifier* identifier)
: identifier(identifier) {}
Identifier* identifier;
};
}