So, I want to create a function like:
void proxy_do_stuff(boost::bind return_here)
{
return_here();
}
And I could call it that:
proxy_do_stuff(boost::bind(&myclass::myfunction, this, my_function_argument_value, etc_fun_argument));
How to do it?
source
share