LeviLamina
Loading...
Searching...
No Matches
EditorContentLogEndPoint.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/debug/log/ContentLogEndPoint.h"
7#include "mc/deps/core/debug/log/LogArea.h"
8#include "mc/deps/core/debug/log/LogLevel.h"
9#include "mc/deps/core/utility/NonOwnerPointer.h"
10
11// auto generated forward declare list
12// clang-format off
13namespace Editor::Services { class LoggingService; }
14// clang-format on
15
16namespace Editor {
17
18class EditorContentLogEndPoint : public ::ContentLogEndPoint {
19public:
20 // member variables
21 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 EditorContentLogEndPoint& operator=(EditorContentLogEndPoint const&);
29 EditorContentLogEndPoint(EditorContentLogEndPoint const&);
30 EditorContentLogEndPoint();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~EditorContentLogEndPoint() /*override*/;
36
37 virtual void log(::LogArea const area, ::LogLevel const level, char const* message) /*override*/;
38
39 virtual bool logOnlyOnce() const /*override*/;
40
41 virtual void flush() /*override*/;
42
43 virtual void setEnabled(bool newState) /*override*/;
44
45 virtual bool isEnabled() const /*override*/;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCNAPI explicit EditorContentLogEndPoint(
52 ::Bedrock::NotNullNonOwnerPtr<::Editor::Services::LoggingService> loggingService
53 );
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor(::Bedrock::NotNullNonOwnerPtr<::Editor::Services::LoggingService> loggingService);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCNAPI void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCNAPI void $log(::LogArea const area, ::LogLevel const level, char const* message);
72
73 MCNAPI bool $logOnlyOnce() const;
74
75 MCNAPI void $flush();
76
77 MCNAPI void $setEnabled(bool newState);
78
79 MCNAPI bool $isEnabled() const;
80
81
82 // NOLINTEND
83
84public:
85 // vftables
86 // NOLINTBEGIN
88
89 MCNAPI static void** $vftableForLogEndPoint();
90 // NOLINTEND
91};
92
93} // namespace Editor
MCAPI ContentLogEndPoint()
MCAPI void * $ctor(::Bedrock::NotNullNonOwnerPtr<::Editor::Services::LoggingService > loggingService)
MCAPI void $setEnabled(bool newState)
MCAPI void $log(::LogArea const area, ::LogLevel const level, char const *message)
MCAPI EditorContentLogEndPoint(::Bedrock::NotNullNonOwnerPtr<::Editor::Services::LoggingService > loggingService)
MCAPI bool $logOnlyOnce() const
static MCAPI void ** $vftableForEnableNonOwnerReferences()
static MCAPI void ** $vftableForLogEndPoint()
Definition LoggingService.h:19
Definition Alias.h:14