LeviLamina
Loading...
Searching...
No Matches
ClientDependencies.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/util/ClipboardProxy.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class IClientInstance;
12class IOptionRegistry;
13namespace ApplicationSignal { class ClipboardCopy; }
14namespace ApplicationSignal { class ClipboardPasteRequest; }
15namespace Social { class IUserManager; }
16// clang-format on
17
18namespace OreUI {
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<8, 24, ::Bedrock::NotNullNonOwnerPtr<::IClientInstance>> mClientInstance;
25 // NOLINTEND
26
27public:
28 // prevent constructor by default
29 ClientDependencies();
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCAPI explicit ClientDependencies(::Bedrock::NotNullNonOwnerPtr<::IClientInstance> const& client);
35
36 MCAPI ::IClientInstance& getClient() const;
37
38 MCAPI ::ClipboardProxy<::ApplicationSignal::ClipboardCopy, ::ApplicationSignal::ClipboardPasteRequest>&
39 getClipboardManager() const;
40
41 MCAPI ::IOptionRegistry& getOptions() const;
42
43 MCAPI ::Social::IUserManager& getUserManager() const;
44
45 MCAPI ~ClientDependencies();
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCFOLD void* $ctor(::Bedrock::NotNullNonOwnerPtr<::IClientInstance> const& client);
52 // NOLINTEND
53
54public:
55 // destructor thunk
56 // NOLINTBEGIN
57 MCFOLD void $dtor();
58 // NOLINTEND
59};
60
61} // namespace OreUI
Definition ClipboardCopy.h:7
Definition ClipboardPasteRequest.h:7
Definition IClientInstance.h:5
Definition IOptionRegistry.h:5
Definition ClientDependencies.h:7
Definition IUserManager.h:7