| 248 | } |
| 249 | |
| 250 | QStringList QueryParser::split(const std::string &string, char delim) |
| 251 | { |
| 252 | auto words = QString::fromStdString(string).split(delim); |
| 253 | return words; |
| 254 | } |
| 255 | |
| 256 | QueryParser::TreeNode QueryParser::orExpression() |
| 257 | { |
no outgoing calls
no test coverage detected