memgraph/cypher/ast/identifier.hpp
2015-08-30 01:12:46 +02:00

20 lines
290 B
C++

#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