comparison server/web_logmachine.h @ 0:a4671277546c tip

created the repository for the thymian project
author ferencd
date Tue, 17 Aug 2021 11:19:54 +0200
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:a4671277546c
1 #ifndef WEB_LOGMACHINE_H
2 #define WEB_LOGMACHINE_H
3
4 #include "log_machine.h"
5
6 class web_logmachine : public unafrog::log::log_machine
7 {
8 public:
9 web_logmachine();
10 ~web_logmachine() final = default;
11 void do_log(unafrog::log::LogLevel level, const std::string& message) noexcept override;
12 };
13
14 #endif // WEB_LOGMACHINE_H