memgraph/cypher/ast/identifier.hpp

20 lines
290 B
C++
Raw Normal View History

#ifndef MEMGRAPH_CYPHER_AST_AST_IDENTIFIER_HPP
#define MEMGRAPH_CYPHER_AST_AST_IDENTIFIER_HPP
#include <string>
#include "ast_node.hpp"
namespace ast
{
struct Identifier : public AstNode<Identifier>
{
Identifier(std::string name) : name(name) {}
std::string name;
};
}
#endif