started query builder

This commit is contained in:
2023-11-01 19:55:09 +01:00
parent fbdf6116ff
commit 9e2d1358bb
16 changed files with 866 additions and 34 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef QUERY_STRING_HPP
#define QUERY_STRING_HPP
#include <string>
namespace matador::utils {
/**
* Replaces all occurrences of string from in given string
* with string to.
*
* @param in Source string where the replacement takes place
* @param from The string to be replaced
* @param to The new string
*/
void replace_all(std::string &in, const std::string &from, const std::string &to);
}
#endif //QUERY_STRING_HPP