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;
17namespace Core { class Path; }
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
27 // NOLINTEND
28
29public:
30 // prevent constructor by default
34
35public:
36 // virtual functions
37 // NOLINTBEGIN
38 // vIndex: 0
39 virtual ~PackManifestFactory() /*override*/;
40
41 // vIndex: 1
42 virtual ::std::unique_ptr<::PackManifest> create(
43 ::PackAccessStrategy& accessStrategy,
44 ::ResourceLocation const& location,
45 ::PackReport& report,
46 ::SubpackInfoCollection* subpackInfoStack
47 ) /*override*/;
48 // NOLINTEND
49
50public:
51 // member functions
52 // NOLINTBEGIN
53 MCNAPI PackManifestFactory(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
54
55 MCNAPI ::std::unique_ptr<::PackManifest> create(
56 ::PackAccessStrategy& accessStrategy,
57 ::std::string const& manifestContent,
58 ::PackReport& report,
59 ::std::unique_ptr<::PackManifest> sourceManifest,
60 ::SubpackInfoCollection* subpackInfoStack
61 );
62 // NOLINTEND
63
64public:
65 // static variables
66 // NOLINTBEGIN
67 MCNAPI static ::std::string const& MANIFEST_PACK_UUID_UPGRADE_SALT();
68
69 MCNAPI static ::Core::Path const& MANIFEST_PATH();
70
71 MCNAPI static ::Core::Path const& MANIFEST_PATH_OLD();
72
73 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mAlternateContentKeys();
74
75 MCNAPI static ::std::unordered_map<::std::string, ::std::vector<char> const>& mContentKeys();
76 // NOLINTEND
77
78public:
79 // constructor thunks
80 // NOLINTBEGIN
81 MCNAPI void* $ctor(::PackCapabilityRegistry const& packCapabilityRegistry, ::IPackTelemetry& eventing);
82 // NOLINTEND
83
84public:
85 // destructor thunk
86 // NOLINTBEGIN
87 MCNAPI void $dtor();
88 // NOLINTEND
89
90public:
91 // virtual function thunks
92 // NOLINTBEGIN
93 MCNAPI ::std::unique_ptr<::PackManifest> $create(
94 ::PackAccessStrategy& accessStrategy,
95 ::ResourceLocation const& location,
96 ::PackReport& report,
97 ::SubpackInfoCollection* subpackInfoStack
98 );
99 // NOLINTEND
100
101public:
102 // vftables
103 // NOLINTBEGIN
104 MCNAPI static void** $vftable();
105 // NOLINTEND
106};
Definition IPackManifestFactory.h:14
Definition IPackTelemetry.h:11
Definition PackAccessStrategy.h:20
Definition PackCapabilityRegistry.h:10
Definition PackManifestFactory.h:20
static MCAPI void ** $vftable()
static MCAPI ::Core::Path const & MANIFEST_PATH_OLD()
static MCAPI ::std::unordered_map<::std::string, ::std::vector< char > const > & mAlternateContentKeys()
static MCAPI ::Core::Path const & MANIFEST_PATH()
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 void $dtor()
MCAPI ::std::unique_ptr<::PackManifest > create(::PackAccessStrategy &accessStrategy, ::std::string const &manifestContent, ::PackReport &report, ::std::unique_ptr<::PackManifest > sourceManifest, ::SubpackInfoCollection *subpackInfoStack)
MCAPI PackManifestFactory(::PackCapabilityRegistry const &packCapabilityRegistry, ::IPackTelemetry &eventing)
Definition PackManifest.h:31
Definition PackReport.h:16
Definition Path.h:16
Definition ResourceLocation.h:14
Definition SubpackInfoCollection.h:5
Definition Alias.h:14