#include <scim_signals.h>
Inheritance diagram for scim::Signal1< R, P1, Marshal >:
Public Types | |
typedef Slot1< R, P1 > | SlotType |
Function signature for handlers connecting to the signal. | |
Public Member Functions | |
Connection | connect (SlotType *slot) |
SlotType * | slot () |
R | emit (P1 p1) |
R | operator() (P1 p1) |
Function operator; calls emit(). |
Definition at line 248 of file scim_signals.h.
|
Function signature for handlers connecting to the signal.
Definition at line 260 of file scim_signals.h. |
|
Connect a slot to the signal.
The returned connection object can be used alter or change the connection. Definition at line 262 of file scim_signals.h. |
|
Returns a slot for this signal.
The returned slot can be passed to another signal allowing the other signal to call this signal when it gets emitted. Definition at line 272 of file scim_signals.h. |
|
Emit the signal.
Calls every slot connected to this signal, in order of connection. Definition at line 282 of file scim_signals.h. Referenced by scim::Signal1< void, P1, IgnoreMarshal >::operator()(), and scim::Signal1< void, const ConfigPointer & >::operator()(). |
|
Function operator; calls emit().
Definition at line 304 of file scim_signals.h. |