---You wrote...-------------------------
> The BINDFUNCTION macros aren't actually needed. Anywhere that you would
have:
> 
>   boost::functionN<...> f;
>   f = BINDFUNCTION(g);
> 
> You could have just written:
>   boost::functionN<...> f;
>   f = g;
> 
> I'd also strongly suggest that you don't use the BINDMETHOD macros,
because 
> sooner or later you'll find yourself needing to use more of bind's
features.
> 
>       Doug
---------------------------------------

When I try your suggestion, I get the error 
'function does not take 2 parameters'
(If I do not use the BINDFUNCTION macros)

It seems to dislike doing this with parameters

Greg
_______________________________________________
Unsubscribe & other changes: http://lists.boost.org/mailman/listinfo.cgi/boost

Reply via email to