/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/dummy_mutex.hpp (832B)
// A model of the Lockable concept from Boost.Thread which // does nothing. It can be passed as the Mutex template parameter // for a signal, if the user wishes to disable thread-safety // (presumably for performance reasons). // Copyright Frank Mori Hess 2008. // Distributed under 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) // See http://www.boost.org/libs/signals2 for library home page. #ifndef BOOST_SIGNALS2_DUMMY_MUTEX_HPP #define BOOST_SIGNALS2_DUMMY_MUTEX_HPP namespace boost { namespace signals2 { class dummy_mutex { public: void lock() {} bool try_lock() {return true;} void unlock() {} }; } // end namespace signals2 } // end namespace boost #endif // BOOST_SIGNALS2_DUMMY_MUTEX_HPP