$include_dir="/home/hyper-archives/boost-users/include"; include("$include_dir/msg-header.inc") ?>
From: Igor R (boost.lists_at_[hidden])
Date: 2008-07-17 04:39:10
> Otherwise, try making a function object (untested):
>
> struct connect {
> typedef void result_type;
> template<class Signal, class F>
> void operator()(Signal& signal, const F& f) { signal.connect(f); }
> }
> ...
> boost::bind(connect(), boost::ref(done_), _1)
>
Great, it compiles!
Thanks a lot.