
13 Apr
2011
13 Apr
'11
5:27 p.m.
Hey, I can finally be of some use, this is cool!
funcPointer = boost::bind(&ChatClient::memberReceiver, this, _1); that does not work. what boost::bind is returning in that case is a boost::function object, like this: boost::function<void (std::string)>; I believe is how you had your message receiving function declared. In which case, you will need to declare another variable for that. HTH, and happy hacking!