libserial
0.6.0rc3
|
Gets a method called when the corresponding signal is received. More...
#include <PosixSignalHandler.h>
Public Member Functions | |
virtual void | HandlePosixSignal (int signalNumber)=0 |
This method is called when the specified POSIX signal is received by the PosixSignalDispatcher that is managing this handler. More... | |
virtual | ~PosixSignalHandler ()=0 |
Destructor is declared virtual as we expect this class to be subclassed. More... | |
Gets a method called when the corresponding signal is received.
A PosixSignalHandler must be connected to the PosixSignalDispatcher for it to be called.
Definition at line 9 of file PosixSignalHandler.h.
|
inlinepure virtual |
Destructor is declared virtual as we expect this class to be subclassed.
It is also declared pure abstract to make this class a pure abstract class.
Definition at line 28 of file PosixSignalHandler.h.
|
pure virtual |
This method is called when the specified POSIX signal is received by the PosixSignalDispatcher that is managing this handler.