rsql-parser/include/matador/rsql/token.hpp

14 lines
227 B
C++

#ifndef RSQL_PARSER_TOKEN_HPP
#define RSQL_PARSER_TOKEN_HPP
#include "token_type.hpp"
#include <string>
namespace matador::rsql {
struct token {
token_type type;
std::string value;
};
}
#endif //RSQL_PARSER_TOKEN_HPP