LeviLamina
Loading...
Searching...
No Matches
ILogHandler.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/cohtml/Severity.h"
7
8namespace cohtml::Logging {
9
10class ILogHandler {
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~ILogHandler() = default;
15
16 virtual void WriteLog(::cohtml::Logging::Severity, char const*, uint64) = 0;
17 // NOLINTEND
18
19public:
20 // virtual function thunks
21 // NOLINTBEGIN
22
23 // NOLINTEND
24};
25
26} // namespace cohtml::Logging
Definition ILogHandler.h:7