LeviLamina
Loading...
Searching...
No Matches
PackManifestFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/resources/interface/IPackManifestFactory.h"
7
8// auto generated forward declare list
9// clang-format off
10class IPackTelemetry;
13class PackManifest;
14class PackReport;
17// clang-format on
18
19class PackManifestFactory : public ::IPackManifestFactory {
20public:
21 // member variables
22 // NOLINTBEGIN
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
31 PackManifestFactory& operator=(PackManifestFactory const&);
32 PackManifestFactory(PackManifestFactory const&);
33 PackManifestFactory();
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38#ifdef LL_PLAT_S
39 virtual ~PackManifestFactory() /*override*/;
40#else // LL_PLAT_C
41 virtual ~PackManifestFactory() /*override*/ = default;
42#endif
43
44 virtual ::std::unique_ptr<::PackManifest> create(
45 ::PackAccessStrategy& accessStrategy,
46 ::ResourceLocation const& location,
47 ::PackReport& report,
48 ::SubpackInfoCollection* subpackInfoStack
49 ) /*override*/;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
55 MCNAPI PackManifestFactory(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
56 // NOLINTEND
57
58public:
59 // static variables
60 // NOLINTBEGIN
61 MCNAPI static ::std::string const& MANIFEST_PACK_UUID_UPGRADE_SALT();
62
63 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mAlternateContentKeys();
64
65 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mContentKeys();
66 // NOLINTEND
67
68public:
69 // constructor thunks
70 // NOLINTBEGIN
71 MCNAPI void* $ctor(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
72 // NOLINTEND
73
74public:
75 // destructor thunk
76 // NOLINTBEGIN
77#ifdef LL_PLAT_S
78 MCNAPI void $dtor();
79#endif
80 // NOLINTEND
81
82public:
83 // virtual function thunks
84 // NOLINTBEGIN
85 MCNAPI ::std::unique_ptr<::PackManifest> $create(
86 ::PackAccessStrategy& accessStrategy,
87 ::ResourceLocation const& location,
88 ::PackReport& report,
89 ::SubpackInfoCollection* subpackInfoStack
90 );
91
92
93 // NOLINTEND
94
95public:
96 // vftables
97 // NOLINTBEGIN
98 MCNAPI static void** $vftable();
99 // NOLINTEND
100};
Definition IPackManifestFactory.h:17
Definition IPackTelemetry.h:5
Definition PackAccessStrategy.h:25
Definition PackCapabilityRegistry.h:13
static MCAPI void ** $vftable()
static MCAPI ::std::unordered_map<::std::string, ::std::vector< char > const > & mAlternateContentKeys()
static MCAPI ::std::unordered_map<::std::string, ::std::vector< char > const > & mContentKeys()
MCAPI void * $ctor(::PackCapabilityRegistry const &packCapabilityRegistry, ::IPackTelemetry &eventing)
static MCAPI ::std::string const & MANIFEST_PACK_UUID_UPGRADE_SALT()
MCAPI ::std::unique_ptr<::PackManifest > $create(::PackAccessStrategy &accessStrategy, ::ResourceLocation const &location, ::PackReport &report, ::SubpackInfoCollection *subpackInfoStack)
MCAPI PackManifestFactory(::PackCapabilityRegistry const &packCapabilityRegistry, ::IPackTelemetry &eventing)
Definition PackManifest.h:38
Definition PackReport.h:16
Definition ResourceLocation.h:15
Definition SubpackInfoCollection.h:11
Definition Alias.h:14