metdoloca
metdoloca

Reputation: 21

How to use std::for_each on a range of boost::function objects?

class User    
{    
public:

    User(){}    
    virtual ~User(){}
    void Test( int in )    
    {    
    }    
}    

User user;

vector< boost::function< void() > > functions;

functions.push_back( boost::bind( &User::Test, &user, 2 ) );

functions.push_back( boost::bind( &User::Test, &user, 4 ) );

for_each( functions.begin(), functions.end() , /* What goes here? */ );

Upvotes: 2

Views: 207

Answers (1)

Andrew Durward
Andrew Durward

Reputation: 3861

Try

for_each( functions.begin(), functions.end(), mem_fn( &function< void() >::operator() ) );

Where mem_fn is either std::tr1::mem_fn or boost::mem_fn.

Upvotes: 3

Related Questions