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

19 lines
210 B
C++

#pragma once
#include <string>
#include "ast_node.hpp"
namespace ast
{
struct Identifier : public AstNode<Identifier>
{
Identifier(std::string name)
: name(name) {}
std::string name;
};
}