AG>#include <boost/bind.hpp> AG>struct s AG>{ AG> void m(int); AG>}; AG>int main() AG>{ s a; AG> boost::bind(&s::m, a, 1); AG> return 0; AG>} AG>