LeviLamina
Loading...
Searching...
No Matches
LoggingInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/lib_http_client/HCTraceLevel.h"
7
8namespace Bedrock::Http {
9
10class LoggingInterface : public ::Bedrock::ImplBase<::Bedrock::Http::LoggingInterface> {
11public:
12 // virtual functions
13 // NOLINTBEGIN
14 virtual ~LoggingInterface() /*override*/ = default;
15
16 virtual uint64 threadId() = 0;
17
18 virtual void writeToDebugger(char const*, ::HCTraceLevel, char const*) = 0;
19 // NOLINTEND
20
21public:
22 // virtual function thunks
23 // NOLINTBEGIN
24
25 // NOLINTEND
26};
27
28} // namespace Bedrock::Http
Definition LoggingInterface.h:10
Definition _HeaderOutputPredefine.h:258