Exemplo n.º 1
0
void Value_money_imp::put_String( const String& inStr )
{
	if( inStr.isSingleByte() )
		put_String( inStr.getBufferA() );
	else
		put_String( inStr.c_str() );
}
Exemplo n.º 2
0
void Value_Raw::put_String( const UChar* inBegin, const UChar* inEnd )
{
	// There is no sence to work with Binary data as with zero terminated and probably
	// multibyte string.
	// 
	
	put_String( (const char*)inBegin, (const char*)inEnd );
}
Exemplo n.º 3
0
bool MsgPacket::put_String(const std::string& string) {
    return put_String(string.c_str());
}