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

14 lines
178 B
C++

#ifndef MEMGRAPH_CYPHER_TOKEN_HPP
#define MEMGRAPH_CYPHER_TOKEN_HPP
#include <cstdint>
#include <string>
struct Token
{
unsigned long id;
std::string value;
};
#endif