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 // distribution is subject to the Boost Software License, Version
0006 // 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0007 // http://www.boost.org/LICENSE_1_0.txt)
0008 
0009 // For more information, see http://www.boost.org
0010 
0011 #ifndef BOOST_SIGNALS2_VARIADIC_SLOT_HPP
0012 #define BOOST_SIGNALS2_VARIADIC_SLOT_HPP
0013 
0014 #include <boost/signals2/detail/variadic_arg_type.hpp>
0015 
0016 #define BOOST_SIGNALS2_SLOT_N_BINDING_CONSTRUCTORS \
0017   template<typename A1, typename A2, typename ... BindArgs> \
0018     slot(const A1 &arg1, const A2 &arg2, const BindArgs & ... args) \
0019   { \
0020     init_slot_function(boost::bind(arg1, arg2, args...)); \
0021   }
0022 
0023 
0024 #include <boost/signals2/detail/slot_template.hpp>
0025 #endif // BOOST_SIGNALS2_VARIADIC_SLOT_HPP