j
k
j a
j l
and what is the right way? boost::function func=boost::bind<bool>(&A::SetData,&a,_1); and after that func(b);
and what is the right way?
boost::function func=boost::bind<bool>(&A::SetData,&a,_1);
and after that
func(b);
boost::function func= boost::bind(&A::SetData, &a, _1); B b; func(b);
Back to the thread
Back to the list