LeviLamina
Loading...
Searching...
No Matches
ZipSettings.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#include "mc/util/ZipCompressionLevel.h"
9
10// auto generated forward declare list
11// clang-format off
12class IFileAccess;
13// clang-format on
14
15namespace Core::ZipUtils {
16
17class ZipSettings {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<8, 48, ::Core::ZipUtils::ZipFileRestrictions> mRestrictions;
22 ::ll::TypedStorage<1, 1, bool> mZipDirectoryContents;
23 ::ll::TypedStorage<1, 1, bool> mSkipInaccessibleFiles;
24 ::ll::TypedStorage<4, 4, int> mCompressionLevel;
25 ::ll::TypedStorage<8, 24, ::Bedrock::NonOwnerPointer<::IFileAccess>> mFileAccess;
26 ::ll::TypedStorage<8, 32, ::std::string> mPassword;
27 ::ll::TypedStorage<4, 4, int> mZip64;
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33 MCAPI ZipSettings();
34
35 MCAPI explicit ZipSettings(::Core::ZipUtils::ZipCompressionLevel compression);
36
37 MCAPI ~ZipSettings();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor();
44
45 MCAPI void* $ctor(::Core::ZipUtils::ZipCompressionLevel compression);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCAPI void $dtor();
52 // NOLINTEND
53};
54
55} // namespace Core::ZipUtils
Definition IFileAccess.h:15