![]() |
![]() |
Public Types | |
typedef signal_emit2< void, T_arg1, T_arg2, nil > | self_type |
typedef void | result_type |
typedef slot< void, T_arg1, T_arg2 > | slot_type |
typedef signal_impl::const_iterator_type | iterator_type |
typedef slot_type::call_type | call_type |
Static Public Member Functions | |
static result_type | emit (signal_impl* impl, typename type_trait<T_arg1>::take _A_a1, typename type_trait<T_arg2>::take _A_a2) |
Executes a list of slots using an accumulator of type T_accumulator. | |
static result_type | emit_reverse (signal_impl* impl, typename type_trait<T_arg1>::take _A_a1, typename type_trait<T_arg2>::take _A_a2) |
Executes a list of slots using an accumulator of type T_accumulator in reverse order. |
This template specialization implements an optimized emit() function for the case that no accumulator is used and the return type is void
.
typedef signal_emit2<void, T_arg1,T_arg2, nil> sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::self_type |
typedef void sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::result_type |
typedef slot<void, T_arg1,T_arg2> sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::slot_type |
typedef signal_impl::const_iterator_type sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::iterator_type |
typedef slot_type::call_type sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::call_type |
static result_type sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::emit | ( | signal_impl* | impl, | |
typename type_trait<T_arg1>::take | _A_a1, | |||
typename type_trait<T_arg2>::take | _A_a2 | |||
) | [inline, static] |
Executes a list of slots using an accumulator of type T_accumulator.
The arguments are passed directly on to the slots.
first | An iterator pointing to the first slot in the list. | |
last | An iterator pointing to the last slot in the list. | |
_A_a1 | Argument to be passed on to the slots. | |
_A_a2 | Argument to be passed on to the slots. |
static result_type sigc::internal::signal_emit2<void, T_arg1, T_arg2, nil>::emit_reverse | ( | signal_impl* | impl, | |
typename type_trait<T_arg1>::take | _A_a1, | |||
typename type_trait<T_arg2>::take | _A_a2 | |||
) | [inline, static] |
Executes a list of slots using an accumulator of type T_accumulator in reverse order.
The arguments are passed directly on to the slots.
first | An iterator pointing to the first slot in the list. | |
last | An iterator pointing to the last slot in the list. | |
_A_a1 | Argument to be passed on to the slots. | |
_A_a2 | Argument to be passed on to the slots. |