![]() |
Consolix
|
Fallback LoggerComponent when LogIt is disabled. More...
#include <LoggerComponent.hpp>
Public Member Functions | |
LoggerComponent ()=default | |
virtual | ~LoggerComponent ()=default |
![]() | |
virtual | ~IAppComponent ()=default |
Virtual destructor for polymorphic usage. | |
Protected Member Functions | |
bool | initialize () override |
Initializes the component. This method is called once before the component is processed. | |
bool | is_initialized () const override |
Checks if the component is initialized. Used to verify if the component is ready to be executed. | |
void | process () override |
Executes the component's main logic. Called repeatedly during the application's main execution loop. | |
Fallback LoggerComponent when LogIt is disabled.
Definition at line 225 of file LoggerComponent.hpp.
|
default |
|
virtualdefault |
|
inlineoverrideprotectedvirtual |
Initializes the component. This method is called once before the component is processed.
true
if the initialization is successful, false
otherwise. Implements consolix::IAppComponent.
Definition at line 233 of file LoggerComponent.hpp.
|
inlineoverrideprotectedvirtual |
Checks if the component is initialized. Used to verify if the component is ready to be executed.
true
if the component is initialized, false
otherwise. Implements consolix::IAppComponent.
Definition at line 234 of file LoggerComponent.hpp.
|
inlineoverrideprotectedvirtual |
Executes the component's main logic. Called repeatedly during the application's main execution loop.
Implements consolix::IAppComponent.
Definition at line 235 of file LoggerComponent.hpp.