You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/set_parser.h

19 lines
387 B

#ifndef __CLASS_SET_PARSER_H
#define __CLASS_SET_PARSER_H
#include <string>
#include <map>
#include <vector>
class SetParser {
private:
std::string query;
public:
SetParser(std::string q);
std::map<std::string, std::vector<std::string>> parse1();
std::map<std::string, std::vector<std::string>> parse2();
std::string parse_character_set();
};
#endif /* __CLASS_SET_PARSER_H */