I'm trying to pass a member function as the callback in boost::thread.Given this: class my_class{...void foo(void);...};Instincts told me to do this:boost::thread my_thread( std::mem_fun(&my_class::foo) );