memgraph/cypher/ast/identifier.hpp

17 lines
201 B
C++
Raw Normal View History

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