1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52
|
#include <string>
#include <core/utf8.h>
#include <wx/string.h>
void callee( const wxString& aString )
{
UTF8 arg = aString;
printf( "%s: '%s'\n", __func__, arg.c_str() );
}
int main( int argc, char** argv )
{
UTF8 bozo = "This is a test of UTF-8: ü‱☺😕😱";
callee( bozo );
wxString s = bozo;
UTF8 b = s;
if( s.IsEmpty() )
{
printf( "string is empty\n" );
}
if( s != bozo.wx_str() )
{
printf( "wxString conversion error\n" );
}
if( b != bozo )
{
printf( "From string conversion error\n" );
}
auto pos = bozo.begin();
auto end = bozo.end();
while( pos != end )
{
printf( "%c", *pos++ );
}
printf("\n");
return 0;
}
|