#include <scim_signals.h>
Inherits scim::Signal.
Public Types | |
typedef Slot5< R, P1, P2, P3, P4, P5 > | SlotType |
Function signature for handlers connecting to the signal. | |
Public Member Functions | |
Connection | connect (SlotType *slot) |
SlotType * | slot () |
R | emit (P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) |
R | operator() (P1 p1, P2 p2, P3 p3, P4 p4, P5 p5) |
Function operator; calls emit(). |
typedef Slot5<R, P1, P2, P3, P4, P5> scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >::SlotType |
Function signature for handlers connecting to the signal.
Connection scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >::connect | ( | SlotType * | slot | ) | [inline] |
Connect a slot to the signal.
slot | - a slot of type Slot5<R, P1, P2, P3, P4, P5>. |
SlotType* scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >::slot | ( | ) | [inline] |
Returns a slot for this signal.
R scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >::emit | ( | P1 | p1, | |
P2 | p2, | |||
P3 | p3, | |||
P4 | p4, | |||
P5 | p5 | |||
) | [inline] |
Emit the signal.
p1 | - passes p1 to the signal handler. | |
p2 | - passes p2 to the signal handler. | |
p3 | - passes p3 to the signal handler. | |
p4 | - passes p4 to the signal handler. | |
p5 | - passes p5 to the signal handler. |
R scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >::operator() | ( | P1 | p1, | |
P2 | p2, | |||
P3 | p3, | |||
P4 | p4, | |||
P5 | p5 | |||
) | [inline] |
Function operator; calls emit().