Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-12-16 10:08:48

0001 // Boost.Signals2 library
0002 
0003 // Copyright Frank Mori Hess 2009.
0004 //
0005 // Use, modification and
0006 // distribution is subject to the Boost Software License, Version
0007 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0008 // http://www.boost.org/LICENSE_1_0.txt)
0009 
0010 // For more information, see http://www.boost.org
0011 
0012 #ifndef BOOST_SIGNALS2_SLOT_HPP
0013 #define BOOST_SIGNALS2_SLOT_HPP
0014 
0015 #include <boost/bind/bind.hpp>
0016 #include <boost/config.hpp>
0017 #include <boost/core/ref.hpp>
0018 #include <boost/function.hpp>
0019 #include <boost/mpl/identity.hpp>
0020 #include <boost/signals2/detail/signals_common.hpp>
0021 #include <boost/signals2/detail/signals_common_macros.hpp>
0022 #include <boost/signals2/detail/tracked_objects_visitor.hpp>
0023 #include <boost/signals2/slot_base.hpp>
0024 #include <boost/visit_each.hpp>
0025 #include <boost/weak_ptr.hpp>
0026 
0027 #ifdef BOOST_NO_CXX11_VARIADIC_TEMPLATES
0028 #include <boost/signals2/preprocessed_slot.hpp>
0029 #else
0030 #include <boost/signals2/variadic_slot.hpp>
0031 #endif
0032 
0033 #endif // BOOST_SIGNALS2_SLOT_HPP