libsigc++ 2.12.1
|
Convenience wrapper for the numbered sigc::signal3 template. More...
#include <sigc++/signal.h>
Additional Inherited Members | |
![]() | |
typedef slot_list_type::const_iterator | const_iterator |
typedef slot_list_type::const_reverse_iterator | const_reverse_iterator |
typedef internal::signal_emit3< T_return, T_arg1, T_arg2, T_arg3, T_accumulator > | emitter_type |
typedef slot_list_type::iterator | iterator |
typedef emitter_type::result_type | result_type |
typedef slot_list_type::reverse_iterator | reverse_iterator |
typedef slot_list< slot_type > | slot_list_type |
typedef slot< T_return(T_arg1, T_arg2, T_arg3)> | slot_type |
![]() | |
typedef std::size_t | size_type |
![]() | |
typedef internal::func_destroy_notify | func_destroy_notify |
![]() | |
typedef internal::signal_impl::iterator_type | iterator_type |
![]() | |
iterator_type | connect (const slot_base & slot_) |
Adds a slot at the end of the list of slots. | |
iterator_type | connect (slot_base && slot_) |
Adds a slot at the end of the list of slots. | |
iterator_type | erase (iterator_type i) |
Removes the slot at the given position from the list of slots. | |
internal::signal_impl * | impl () const |
Returns the signal_impl object encapsulating the list of slots. | |
iterator_type | insert (iterator_type i, const slot_base & slot_) |
Adds a slot at the given position into the list of slots. | |
iterator_type | insert (iterator_type i, slot_base && slot_) |
Adds a slot at the given position into the list of slots. | |
![]() | |
internal::signal_impl * | impl_ |
The signal_impl object encapsulating the slot list. | |
Convenience wrapper for the numbered sigc::signal3 template.
Like sigc::signal but the additional template parameter T_accumulator defines the accumulator type that should be used.
|
inline |