#include "LogOperation.h"
◆ LogOperation()
LogOperation::LogOperation |
( |
Logger const * |
_logger, |
|
|
std::unique_ptr< LogMessage > && |
_msg |
|
) |
| |
22 :
logger(_logger),
msg(std::forward<std::unique_ptr<LogMessage>>(_msg))
23{
24}
std::unique_ptr< LogMessage > msg
Definition: LogOperation.h:37
Logger const * logger
Definition: LogOperation.h:36
◆ ~LogOperation()
LogOperation::~LogOperation |
( |
| ) |
|
◆ call()
int LogOperation::call |
( |
| ) |
|
31{
33 return 0;
34}
void write(LogMessage *message) const
Definition: Logger.cpp:49
References logger, msg, and Logger::write().
◆ logger
Logger const* LogOperation::logger |
|
protected |
◆ msg