scim  1.4.18
scim_signals.h File Reference

C++ signal interface. More...

Classes

class  scim::SlotNode
 A node class for managing slots connected to scim::Signal's. More...
 
class  scim::DefaultMarshal< R >
 
class  scim::DefaultMarshal< bool >
 
class  scim::Signal
 Base class for the C++ signal interface. More...
 
class  scim::Signal0< R, Marshal >
 A template for a signal passing no arguments and returning a value of type R. More...
 
class  scim::Signal0< void, IgnoreMarshal >
 
class  scim::Signal1< R, P1, Marshal >
 A template for a signal passing one argument of type P1 and returning a value of type R. More...
 
class  scim::Signal1< void, P1, IgnoreMarshal >
 
class  scim::Signal2< R, P1, P2, Marshal >
 A template for a signal passing two arguments of type P1 and P2, and returning a value of type R. More...
 
class  scim::Signal2< void, P1, P2, IgnoreMarshal >
 
class  scim::Signal3< R, P1, P2, P3, Marshal >
 A template for a signal passing three arguments of type P1, P2 and P3, and returning a value of type R. More...
 
class  scim::Signal3< void, P1, P2, P3, IgnoreMarshal >
 
class  scim::Signal4< R, P1, P2, P3, P4, Marshal >
 A template for a signal passing four arguments of type P1, P2, P3 and P4, and returning a value of type R. More...
 
class  scim::Signal4< void, P1, P2, P3, P4, IgnoreMarshal >
 
class  scim::Signal5< R, P1, P2, P3, P4, P5, Marshal >
 A template for a signal passing five arguments of type P1, P2, P3, P4 and P5, and returning a value of type R. More...
 
class  scim::Signal5< void, P1, P2, P3, P4, P5, IgnoreMarshal >
 
class  scim::Signal6< R, P1, P2, P3, P4, P5, P6, Marshal >
 A template for a signal passing six arguments of type P1, P2, P3, P4, P5 and P6, and returning a value of type R. More...
 
class  scim::Signal6< void, P1, P2, P3, P4, P5, P6, IgnoreMarshal >
 

Namespaces

 scim
 

Detailed Description

C++ signal interface.

Provides a set of signal class templates you can use to create signals that can pass up to 6 arguments to signal handlers connected via the slot interface (see scim_slot.h). The signal classes are named Signal0 to Signal6, where 0 to 6 specifies the number of arguments that can be passed to a slot.

Most code of this file are came from Inti project.