LeviLamina
Loading...
Searching...
No Matches
PackAssetSet.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/brstd/function_ref.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core { class Path; }
11// clang-format on
12
13class PackAssetSet {
14public:
15 // member variables
16 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 PackAssetSet& operator=(PackAssetSet const&);
23 PackAssetSet(PackAssetSet const&);
24 PackAssetSet();
25
26public:
27 // virtual functions
28 // NOLINTBEGIN
29 virtual ~PackAssetSet() = default;
30
31 virtual void addAsset(::Core::Path, ::std::string) = 0;
32
33 virtual void clear() = 0;
34
35 virtual bool hasAsset(::Core::Path const&, bool) const = 0;
36
37 virtual ::std::string const* const getDecryptionKey(::Core::Path const&, bool) const = 0;
38
39 virtual void forEachAsset(::brstd::function_ref<void(::Core::Path const&)>) const = 0;
40
41 virtual bool isEmpty() const = 0;
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
Definition Path.h:10
Definition function_ref.h:60
Definition Alias.h:14