LeviLamina
Loading...
Searching...
No Matches
FileLogEndPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/debug/log/LogEndPoint.h"
7
8namespace Bedrock {
9
10class FileLogEndPoint : public ::Bedrock::LogEndPoint {
11public:
12 // member variables
13 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
25 FileLogEndPoint& operator=(FileLogEndPoint const&);
26 FileLogEndPoint(FileLogEndPoint const&);
27 FileLogEndPoint();
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~FileLogEndPoint() /*override*/ = default;
33
34 virtual void log(char const*) /*override*/;
35
36 virtual void flush() /*override*/;
37
38 virtual void setEnabled(bool) /*override*/;
39
40 virtual bool isEnabled() const /*override*/;
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46
47 // NOLINTEND
48};
49
50} // namespace Bedrock
Definition LogEndPoint.h:7
Definition Alias.h:14