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