memgraph/cypher/ast/identifier.hpp

19 lines
210 B
C++
Raw Normal View History

#pragma once
#include <string>
#include "ast_node.hpp"
namespace ast
{
struct Identifier : public AstNode<Identifier>
{
2016-01-24 23:21:46 +08:00
Identifier(std::string name)
: name(name) {}
std::string name;
};
}