17 Jul
2002
17 Jul
'02
2:04 p.m.
On Wednesday 17 July 2002 09:46 am, Angus Leeming wrote:
class Foo { public: boost::signals::connection connect(slot_type const &) const; private: class Impl; boost::scoped_ptr<Impl> const pimpl_; };
My problem is defining slot_type. If I have
There's a slot_type in the signal for exactly this reason, just use: boost::signals::connection connect(boost::signal0<void>::slot_type const&) const; Doug