hello, i need to use the function in another class file as thread
int main()
{
master t;
boost::thread t1(boost::bind(t.start, "exampl"));
t1.join();
}
i have an class master
and a function start
..i need to pass an value to it and run
i have used this in same class it works fine...can any one tell me where i am wrong