Project SkyFire Core
SkyFire 5.4.8 server core API documentation
Loading...
Searching...
No Matches
LogOperation.h
Go to the documentation of this file.
1/*
2* This file is part of Project SkyFire https://www.projectskyfire.org.
3* See LICENSE.md file for Copyright information
4*/
5
6#ifndef LOGOPERATION_H
7#define LOGOPERATION_H
8
9class Logger;
10struct LogMessage;
11
13{
14public:
15 LogOperation(Logger const* _logger, LogMessage* _msg)
16 : logger(_logger), msg(_msg)
17 { }
18
20
21 int call();
22
23protected:
24 Logger const* logger;
26};
27
28#endif
LogOperation(Logger const *_logger, LogMessage *_msg)
LogMessage * msg
Logger const * logger