Sergey Kishchenko wrote:
I have one problem with boost.bind and boost.signals I can't understand.
I have used bind with signals in a simpler way than you have in this
example. It works well for me. I don't know if you are doing it in a
more complex way for a reason, but hopefully my simple version will be
some help.
class MyClass
{
public:
MyClass(void)
{ // define the connection using bind
mySignal.connect(
boost::bind(&MyClass::MySlot,this,_1));
}
boost::signal