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
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI UnzipSettings();
34
35 MCAPI ~UnzipSettings();
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor();
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace Core::ZipUtils
Definition IFileAccess.h:15