
-----Original Message----- From: boost-users-bounces@lists.boost.org [mailto:boost-users-bounces@lists.boost.org] On Behalf Of David Klein Sent: Wednesday, February 14, 2007 9:43 AM To: boost-users@lists.boost.org Subject: Re: [Boost-users] How to block a signal Dahman wrote:
I have a signal with many slots connected to it and I have a class object witch want to have the possibility to block this signal at the start and unblock it later, but know nothing about what and how many slots are connected to it (then can't use connection.disconnect()).
Is there any solution for this problem?
Thanks for any help. _______________________________________________ Boost-users mailing list Boost-users@lists.boost.org http://lists.boost.org/mailman/listinfo.cgi/boost-users
look for 'Blocking Slots (Beginner)' in http://boost.org/doc/html/signals/tutorial.html#id2732772 -- HTH dave [Nat] But that seems to require retaining each connection, which the OP says he doesn't have. Is there an operation to block the /signal/ versus individual /slots/?