template<class Param1, class Param2>
class itasca::Signal2< Param1, Param2 >
Definition of a Signal2 object, holding a list of ISlot2 objects.
This is part of a custom, small-granularity callback utility whose purpose is to mimic the Qt signal/slot paradigm without the overhead. A Signal2 object holds a list of ISlot2 objects. Signal2 is derived from ISlotBase so that a Signal2 can be chained or attached to another Signal2 (see attachSignal() and removeSignal()). The attached methods are invoked with execute(). Internally Slots are created via the AutoSlot0, AutoSlot1 and AutoSlot2 template classes. These classes correspond to methods taking 0, 1 or 2 arguments. Thus it is possible to attach a method taking either 0, 1 or 2 arguments to a Signal2 object. This is accomplished by the attachMethod0(), attachMethod1() and attachMethod2() functions, respectively. There are matching removeMethod0(), removeMethod1() and removeMethod2() functions as well. The attach() and remove() methods require ISlot2 arguments. The syntax for attaching a method inside the class where the method is defined (Note: the class must be derived from Slot) is
signal2->attachMethod2<Fred,&Fred::func>(this);
where signal2 is the Signal2 object and Fred is the class (derived from Slot) where the member function func resides. Also the attach method can be used:
signal2->attach<Fred,&Fred::func>(&fred);
where fred is a particular instance of the class Fred. The remove sytax is similar:
signal2->remove(&fred,&Fred::func);
template<class Param1 , class Param2 >
template<class T , void(T::*)() MFP>
Uses the AutoSlot0 template class to attach the method MFP of the instance t of class T which takes no arguments. Warning - attempting to do this to a function that is overloaded will cause a compiler error in VS2005.
- Parameters
-
t | Pointer to the instance of T that has the method MFP. |
template<class Param1 , class Param2 >
template<class T , void(T::*)(Param1) MFP>
Uses the AutoSlot1 template class to attach the method MFP of the instance t of class T which takes one argument. Warning - attempting to do this to a function that is overloaded will cause a compiler error in VS2005.
- Parameters
-
t | Pointer to the instance of T that has the method MFP. |
template<class Param1 , class Param2 >
template<class T , void(T::*)(Param1, Param2) MFP>
Uses the AutoSlot2 template class to attach the method MFP of the instance t of class T which takes two arguments. Warning - attempting to do this to a function that is overloaded will cause a compiler error in VS2005.
- Parameters
-
t | Pointer to the instance of T that has the method MFP. |
template<class Param1 , class Param2 >
template<class T , void(T::*)(Param1, Param2) MFP>
Removes the method MFP of the instance t of class T taking 2 arguments by creating a temporary AutoSlot2 object and removing it.
- Parameters
-
t | Pointer to the instance of T that has the method MFP. |