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