![]() |
HydroCouple
2.0.0
HydroCouple Interface Definitions
|
ISlot interface class must be implemented by classes that want to listen to signals. More...
#include <hydrocouple.h>
Public Member Functions | |
virtual | ~ISlot ()=default |
ISlot::~ISlot is a virtual destructor. | |
virtual void | operator() (const ISignal< Args... > &sender, Args... args)=0 |
operator() is the function call operator that is called when a signal is emitted. | |
ISlot interface class must be implemented by classes that want to listen to signals.
ISlot is a template class that can be used to listen to signals with any number of arguments.
Args | are the arguments that will be passed by the signal. |
|
virtualdefault |
ISlot::~ISlot is a virtual destructor.
|
pure virtual |
operator() is the function call operator that is called when a signal is emitted.
[in] | sender | is the object that emitted the signal. |
[in] | args | are the arguments passed by the signal. |