21 Jul
2008
21 Jul
'08
8:09 p.m.
Hi, Is it possible to override/generate a return value? I want to connect a signal that has a bool return value to a method that has a void return type, generating always a true return. class X { public: void f(); }; boost::signal< bool () > sgn; X x; sgn.connect( boost::bind( &X::f, &x ) ); // error, signal has bool return, method doesn't David