#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. | |
virtual | ~PosixSignalHandler ()=0 |
Destructor is declared virtual as we expect this class to be subclassed. |
A PosixSignalHandler must be connected to the PosixSignalDispatcher for it to be called.
Definition at line 9 of file PosixSignalHandler.h.
PosixSignalHandler::~PosixSignalHandler | ( | ) | [inline, pure 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.
virtual void PosixSignalHandler::HandlePosixSignal | ( | int | signalNumber | ) | [pure virtual] |
This method is called when the specified POSIX signal is received by the PosixSignalDispatcher that is managing this handler.