|
#ifndef RSQL_PARSER_LEXER_HPP
|
|
#define RSQL_PARSER_LEXER_HPP
|
|
|
|
#include "token.hpp"
|
|
|
|
#include <regex>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace matador::rsql::lexer {
|
|
std::vector<token> tokenize(const std::string& input);
|
|
}
|
|
#endif //RSQL_PARSER_LEXER_HPP
|