So I want to create a function like:
void proxy_do_stuff(boost::bind return_here)
{
return_here(); // call stuff pased into boost::bind
}
And I could call it like :
proxy_do_stuff(boost::bind(&myclass::myfunction, this, my_function_argument_value, etc_fun_argument));
How to do such thing?
proxy_do_stuff<bla-bla-bla>(...)
? – Recap