I need to pass Objective C object instance to C++ method trough params. How I can do it?
This code doesn't work, and I know it. I'm just showing what I want.
MyObjcClass *instance = [[MyObjcClass alloc] init];
myCppClassInstance.myCppMethod(instance);