Core/Utilities: Do not expose internal store structure in Tokens and rename it to Tokenizer

This commit is contained in:
Spp
2012-10-02 11:54:41 +02:00
parent d44ec4b7da
commit f8846cdeaf
21 changed files with 187 additions and 269 deletions

View File

@@ -41,7 +41,7 @@ struct MySQLConnectionInfo
MySQLConnectionInfo() {}
MySQLConnectionInfo(const std::string& infoString)
{
Tokens tokens(infoString, ';');
Tokenizer tokens(infoString, ';');
if (tokens.size() != 5)
return;