23 Apr
2003
23 Apr
'03
10:21 a.m.
Hi Russell, Russell Hind wrote:
I have a std::list of boost::function0<void> I would like to call all items using a for_each statement. Is there a standard function object that I can pass into the for_each call that will call operator() on each element?
Yes, std::mem_fun_ref. Complete example tested with g++ 3.2 is at the end.
HTH,
Volodya
#include