j
k
j a
j l
MyClass::myFunction() { boost::thread thrd(&hello);
What you probably mean is boost::thread thrd(boost::bind(&MyClass::hello, this)); (i.e. saying that you want to call the hello function for 'this' object). cheers, Remko
Back to the thread
Back to the list