LeviLamina
Loading...
Searching...
No Matches
LogEndPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Bedrock {
6
8public:
9 // virtual functions
10 // NOLINTBEGIN
11 virtual ~LogEndPoint() = default;
12
13 virtual void log(char const*) = 0;
14
15 virtual void flush() = 0;
16
17 virtual void setEnabled(bool) = 0;
18
19 virtual bool isEnabled() const = 0;
20 // NOLINTEND
21
22public:
23 // virtual function thunks
24 // NOLINTBEGIN
25
26 // NOLINTEND
27};
28
29} // namespace Bedrock
Definition LogEndPoint.h:7