#include <scim_signals.h>
Inheritance diagram for scim::Signal0< R, Marshal >:
Public Types | |
typedef Slot0< R > | SlotType |
Function signature for handlers connecting the signal. | |
Public Member Functions | |
Connection | connect (SlotType *slot) |
SlotType * | slot () |
R | emit () |
R | operator() () |
Function operator; calls emit(). |
|
Function signature for handlers connecting the signal.
|
|
Connect a slot to the signal.
The returned connection object can be used alter or change the connection. |
|
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. |
|
Emit the signal.
Calls every slot connected to this signal, in order of connection. |
|
Function operator; calls emit().
|