In boost::thread is it possible to call a class method with out making the class callable and implementing the void operator()() as in just call the class method
for(int i=0;i<5;i++)
boost::thread worker(myclass.myfunc,i,param2);
I get an error <unresolved overloaded function type>
Actually I would prefer to know the same for zi::thread