LeviLamina
Loading...
Searching...
No Matches
LoggingService.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/scripting/runtime/Result_deprecated.h"
7#include "mc/editor/script/LoggingServiceProvider.h"
8#include "mc/editor/services/IEditorService.h"
9
10// auto generated forward declare list
11// clang-format off
12namespace Bedrock::PubSub { class Subscription; }
13namespace Editor { class LogMessage; }
14// clang-format on
15
16namespace Editor::Services {
17
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 LoggingService& operator=(LoggingService const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~LoggingService() /*override*/;
36
37 // vIndex: 1
38 virtual ::Scripting::Result_deprecated<void> init() /*override*/;
39
40 // vIndex: 3
41 virtual ::Scripting::Result_deprecated<void> quit() /*override*/;
42
43 // vIndex: 4
44 virtual ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription>
45 listenForLogMessage(::std::function<void(::Editor::LogMessage const&)> func) /*override*/;
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCNAPI void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::Scripting::Result_deprecated<void> $init();
58
59 MCNAPI ::Scripting::Result_deprecated<void> $quit();
60
61 MCNAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription>
62 $listenForLogMessage(::std::function<void(::Editor::LogMessage const&)> func);
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCNAPI static void** $vftableForLoggingServiceProvider();
69
70 MCNAPI static void** $vftableForIEditorService();
71 // NOLINTEND
72};
73
74} // namespace Editor::Services
Definition LogMessage.h:12
Definition IEditorService.h:11
Definition LoggingServiceProvider.h:19
Definition LoggingService.h:18
static MCAPI void ** $vftableForIEditorService()
MCAPI ::Scripting::Result_deprecated<::Bedrock::PubSub::Subscription > $listenForLogMessage(::std::function< void(::Editor::LogMessage const &)> func)
MCAPI ::Scripting::Result_deprecated< void > $init()
static MCAPI void ** $vftableForLoggingServiceProvider()
MCAPI ::Scripting::Result_deprecated< void > $quit()
Definition Alias.h:14