LeviLamina
Loading...
Searching...
No Matches
Manager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/codebuilder/IManager.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class IMinecraftApp;
12namespace Automation { class AutomationClient; }
13namespace CodeBuilder { class IMessenger; }
14// clang-format on
15
16namespace CodeBuilder {
17
18class Manager : public ::CodeBuilder::IManager {
19public:
20 // member variables
21 // NOLINTBEGIN
24 // NOLINTEND
25
26public:
27 // prevent constructor by default
28 Manager& operator=(Manager const&);
29 Manager(Manager const&);
30 Manager();
31
32public:
33 // virtual functions
34 // NOLINTBEGIN
35 virtual ~Manager() /*override*/ = default;
36
37 virtual ::Bedrock::NotNullNonOwnerPtr<::Automation::AutomationClient> getAutomationClient() const /*override*/;
38
39 virtual ::Bedrock::NotNullNonOwnerPtr<::CodeBuilder::IMessenger> getEventing() const /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI explicit Manager(::IMinecraftApp& minecraftApp);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(::IMinecraftApp& minecraftApp);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::Automation::AutomationClient> $getAutomationClient() const;
58
59 MCNAPI ::Bedrock::NotNullNonOwnerPtr<::CodeBuilder::IMessenger> $getEventing() const;
60
61
62 // NOLINTEND
63
64public:
65 // vftables
66 // NOLINTBEGIN
67 MCNAPI static void** $vftable();
68 // NOLINTEND
69};
70
71} // namespace CodeBuilder
Definition AutomationClient.h:27
Definition IManager.h:17
Definition IMessenger.h:24
MCAPI ::Bedrock::NotNullNonOwnerPtr<::Automation::AutomationClient > $getAutomationClient() const
MCAPI void * $ctor(::IMinecraftApp &minecraftApp)
static MCAPI void ** $vftable()
MCAPI ::Bedrock::NotNullNonOwnerPtr<::CodeBuilder::IMessenger > $getEventing() const
MCAPI Manager(::IMinecraftApp &minecraftApp)
Definition IMinecraftApp.h:19
Definition Alias.h:14