Andreas Vox wrote:
> BTW, does anyone know the type of the expression
>     bind(&Impl::finishedGenerating, this, _1, _2)

No, but you don't need to either. You can store it in a

boost::function<ReturnType(Arg1Type, Arg2Type)> my_func =
 bind(&Impl::finishedGenerating, this, _1, _2);

to be used as
 ReturnType result = my_func(arg1, arg2);

-- 
Angus

Reply via email to