LeviLamina
Loading...
Searching...
No Matches
PackSource.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/resource/PackOrigin.h"
7#include "mc/deps/core/resource/PackType.h"
8#include "mc/deps/core/utility/NonOwnerPointer.h"
9
10// auto generated forward declare list
11// clang-format off
14class Pack;
16// clang-format on
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~PackSource() = 0;
24
25 // vIndex: 1
26 virtual void forEachPackConst(::std::function<void(::Pack const&)>) const = 0;
27
28 // vIndex: 2
29 virtual void forEachPack(::std::function<void(::Pack&)>) = 0;
30
31 // vIndex: 3
32 virtual ::PackOrigin getPackOrigin() const;
33
34 // vIndex: 4
35 virtual ::PackType getPackType() const;
36
37 // vIndex: 5
38 virtual ::PackSourceReport
39 load(::IPackManifestFactory&, ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const&) = 0;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCAPI void resolveUpgradeDependencies(
46 ::Pack& pack,
47 ::Bedrock::NotNullNonOwnerPtr<::IContentKeyProvider const> const& keyProvider
48 );
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54
55 // NOLINTEND
56
57public:
58 // virtual function thunks
59 // NOLINTBEGIN
60 MCFOLD ::PackOrigin $getPackOrigin() const;
61
62 MCFOLD ::PackType $getPackType() const;
63 // NOLINTEND
64
65public:
66 // vftables
67 // NOLINTBEGIN
68 MCAPI static void** $vftable();
69 // NOLINTEND
70};
Definition IContentKeyProvider.h:13
Definition IPackManifestFactory.h:14
Definition PackSourceReport.h:5
Definition PackSource.h:18
Definition Pack.h:26