I have defined a bunch of boost::signal2 in a class and connected them to some slots on class construction. Is there an api call in boost that disconnects all the signals owned by a class, like disconnect_all()?
so that I don't need to disconnect each signal one by one.