23 Aug
2008
23 Aug
'08
10:29 p.m.
On Sat, Aug 23, 2008 at 2:22 PM, Jean-Sebastien Stoezel
Hello,
How to pass arguments to a thread?
From the documentation I thought I could do this: mp_ProcessorListenerThread = new boost::thread(ProcessorListener, this);
However I get the following error: 'boost::thread::thread' : no overloaded function takes 2 arguments
new boost::thread(boost::bind(&MyClass::ProcessorListener, this)); -- Cory Nelson