Definition in file rc_resettable.h.
Go to the source code of this file.
Namespaces | |
namespace | ReChannel |
Classes | |
class | rc_resettable |
The pure virtual interface rc_resettable. More... | |
Defines | |
#define | RC_ON_RESET() virtual void rc_on_reset() |
Declares the rc_on_reset() callback method. | |
#define | RC_ON_INIT_RESETTABLE() virtual void rc_on_init_resettable() |
Declares the rc_on_init_resettable() callback method. |
#define RC_ON_INIT_RESETTABLE | ( | ) | virtual void rc_on_init_resettable() |
Declares the rc_on_init_resettable() callback method.
This convenience macro can be invoked within classes that implement interface rc_resettable. It simplifies the notation of the virtual rc_on_init_resettable() callback method within class declarations.
Example:
RC_ON_INIT_RESETTABLE() { [...] // implementation of the initialisation }
Definition at line 149 of file rc_resettable.h.
#define RC_ON_RESET | ( | ) | virtual void rc_on_reset() |
Declares the rc_on_reset() callback method.
This convenience macro can be invoked within classes that implement interface rc_resettable. It simplifies the notation of the virtual rc_on_reset() callback method within class declarations.
Example:
RC_ON_RESET() { [...] // implementation of the reset }
Definition at line 130 of file rc_resettable.h.