Here is
example:
struct
a{
int foo(bool){
return 0; }
};
boost::function1<int, void> func =
bind(&a::foo,_1,false);
a
somea;
func(somea);
Is it possible
to get a bind type?
Something
like:
boost::mpl::identity<boost::bind<int,void,boost::arg<1>,a>
>::type abind;
Thanks Vlad.