/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/postconstructible.hpp (1633B)
// DEPRECATED in favor of adl_postconstruct with deconstruct(). // A simple framework for creating objects with postconstructors. // The objects must inherit from boost::signals2::postconstructible, 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_POSTCONSTRUCTIBLE_HPP #define BOOST_SIGNALS2_POSTCONSTRUCTIBLE_HPP namespace boost { template class shared_ptr; namespace signals2 { namespace postconstructible_adl_barrier { class postconstructible; } namespace detail { void do_postconstruct(const boost::signals2::postconstructible_adl_barrier::postconstructible *ptr); } // namespace detail namespace postconstructible_adl_barrier { class postconstructible { public: friend void detail::do_postconstruct(const postconstructible *ptr); template friend void adl_postconstruct(const shared_ptr &, postconstructible *p) { p->postconstruct(); } protected: postconstructible() {} virtual ~postconstructible() {} virtual void postconstruct() = 0; }; } // namespace postconstructible_adl_barrier using postconstructible_adl_barrier::postconstructible; } } #endif // BOOST_SIGNALS2_POSTCONSTRUCTIBLE_HPP