/usr/include/boost/signals2
NameSizeModeActions
detail/-0755rm
connection.hpp120050644editdlrm
deconstruct.hpp189820644editdlrm
deconstruct_ptr.hpp23850644editdlrm
dummy_mutex.hpp8320644editdlrm
expired_slot.hpp7310644editdlrm
last_value.hpp21610644editdlrm
mutex.hpp10600644editdlrm
optional_last_value.hpp17200644editdlrm
postconstructible.hpp16330644editdlrm
predestructible.hpp13410644editdlrm
preprocessed_signal.hpp24300644editdlrm
preprocessed_slot.hpp28070644editdlrm
shared_connection_block.hpp18580644editdlrm
signal.hpp19130644editdlrm
signal_base.hpp8150644editdlrm
signal_type.hpp41620644editdlrm
slot.hpp9760644editdlrm
slot_base.hpp33650644editdlrm
trackable.hpp19130644editdlrm
variadic_signal.hpp14570644editdlrm
variadic_slot.hpp7720644editdlrm
Edit: /usr/include/boost/signals2/predestructible.hpp (1341B)
// DEPRECATED in favor of adl_predestruct with deconstruct(). // A simple framework for creating objects with predestructors. // The objects must inherit from boost::signals2::predestructible, and // have their lifetimes managed by // boost::shared_ptr created with the boost::signals2::deconstruct_ptr() // function. // // Copyright Frank Mori Hess 2007-2008. // //Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) #ifndef BOOST_SIGNALS2_PREDESTRUCTIBLE_HPP #define BOOST_SIGNALS2_PREDESTRUCTIBLE_HPP namespace boost { namespace signals2 { template class predestructing_deleter; namespace predestructible_adl_barrier { class predestructible { protected: predestructible() {} public: template friend void adl_postconstruct(const shared_ptr &, ...) {} friend void adl_predestruct(predestructible *p) { p->predestruct(); } virtual ~predestructible() {} virtual void predestruct() = 0; }; } // namespace predestructible_adl_barrier using predestructible_adl_barrier::predestructible; } } #endif // BOOST_SIGNALS2_PREDESTRUCTIBLE_HPP