Exemple #1
0
void ICQClient::fromServer(string &str)
{
    translate(localCharset(), serverCharset(), str);
}
Exemple #2
0
void ICQClient::toServer(string &str)
{
    translate(serverCharset(), localCharset(), str);
}
Exemple #3
0
void ICQClient::toServer(string &str, const char *lclCharset)
{
    if (lclCharset == NULL) lclCharset = localCharset();
    translate(serverCharset(lclCharset), lclCharset, str);
}