Is it possible to use the following function using luabind?
void retByRef(int &a, int& b) { a = 10; b = 10 }
I tried to do the following, but only works with functions that have one parameter
def("retByRef", &retByRef, pure_out_value(_1))
Is there a way to specify a policy for each setting?
source share