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

13 lines
257 B
C++

#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