File indexing completed on 2025-12-16 10:08:48
0001
0002
0003
0004
0005
0006
0007
0008
0009
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