HydroCouple  2.0.0
HydroCouple Interface Definitions
Loading...
Searching...
No Matches
HydroCouple::ISlot< Args > Class Template Referenceabstract

ISlot interface class must be implemented by classes that want to listen to signals. More...

#include <hydrocouple.h>

Collaboration diagram for HydroCouple::ISlot< Args >:

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.
 

Detailed Description

template<typename... Args>
class HydroCouple::ISlot< Args >

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.

Template Parameters
Argsare the arguments that will be passed by the signal.
See also
ISignal

Constructor & Destructor Documentation

◆ ~ISlot()

template<typename... Args>
virtual HydroCouple::ISlot< Args >::~ISlot ( )
virtualdefault

ISlot::~ISlot is a virtual destructor.

Member Function Documentation

◆ operator()()

template<typename... Args>
virtual void HydroCouple::ISlot< Args >::operator() ( const ISignal< Args... > &  sender,
Args...  args 
)
pure virtual

operator() is the function call operator that is called when a signal is emitted.

Parameters
[in]senderis the object that emitted the signal.
[in]argsare the arguments passed by the signal.

The documentation for this class was generated from the following file: