5 Dec
2006
5 Dec
'06
9:20 p.m.
Javier Estrada wrote:
How can I use boost bind to bind to an overloaded member function?
You have to cast explicitly to select the correct overload.
But when I added:
void C::dial(char key, MyConstants c); void C::dial(string toDial); void C::dial(string, MyConstants c);
References to my working code break:
for_each(begin, end, boost::bind(&C::dial, this, _1 ));
for_each(begin, end, boost::bind(
static_cast