fprintf(stdout,"\nCreate new instance of MyService1\nCall of XSomething.methOne at MyService1 = %s",OUStringToOString(s,RTL_TEXTENCODING_ASCII_US).getStr());
// create a new instance of MyService2 with the specified string argument
// create a new instance of MyService2 with the specified string argument
xSomething=my_module::MyService2::create(xContext,OUString(RTL_CONSTASCII_USTRINGPARAM("Hello My World!")));
xSomething=my_module::MyService2::create(xContext,OUString(RTL_CONSTASCII_USTRINGPARAM("Hello My World!")));
// call methodTwo and print the return value of methodTwo
// call methodTwo and print the return value of methodTwo
s=xSomething->methodTwo();
s=xSomething->methodTwo();
cout<<"\n\nCreate new instance of MyService2 with argument\n"
fprintf(stdout,"\n\nCreate new instance of MyService2 with argument\nCall of XSomething.methTwo at MyService2 = %s",OUStringToOString(s,RTL_TEXTENCODING_ASCII_US).getStr());