LeviLamina
Loading...
Searching...
No Matches
UnzipSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/file/ZipFileRestrictions.h"
7#include "mc/deps/core/utility/NonOwnerPointer.h"
8
9// auto generated forward declare list
10// clang-format off
11class IFileAccess;
12// clang-format on
13
14namespace Core::ZipUtils {
15
16class UnzipSettings {
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 48, ::Core::ZipUtils::ZipFileRestrictions> mRestrictions;
21 ::ll::TypedStorage<1, 1, bool> mDeleteZipOnSuccess;
22 ::ll::TypedStorage<1, 1, bool> mPreventOverwrites;
23 ::ll::TypedStorage<8, 24, ::Bedrock::NonOwnerPointer<::IFileAccess>> mFileAccess;
24 ::ll::TypedStorage<8, 32, ::std::string> mPassword;
25 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mSelectedPaths;
26 ::ll::TypedStorage<8, 24, ::std::vector<::std::string>> mUnselectedPaths;
27 ::ll::TypedStorage<8, 8, uint64> mMaxDirectoryDepth;
28 // NOLINTEND
29
30#ifdef LL_PLAT_S
31#else // LL_PLAT_C
32public:
33 // prevent constructor by default
34 UnzipSettings& operator=(UnzipSettings const&);
35
36#endif
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCAPI UnzipSettings();
41
42#ifdef LL_PLAT_C
43 MCAPI UnzipSettings(::Core::ZipUtils::UnzipSettings const&);
44#endif
45
46 MCAPI ~UnzipSettings();
47 // NOLINTEND
48
49public:
50 // constructor thunks
51 // NOLINTBEGIN
52 MCAPI void* $ctor();
53
54#ifdef LL_PLAT_C
55 MCAPI void* $ctor(::Core::ZipUtils::UnzipSettings const&);
56#endif
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCAPI void $dtor();
63 // NOLINTEND
64};
65
66} // namespace Core::ZipUtils
Definition UnzipSettings.h:16
Definition IFileAccess.h:15