LeviLamina
Loading...
Searching...
No Matches
UnzipSettings.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::ZipUtils {
6
8public:
9 // member variables
10 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 UnzipSettings& operator=(UnzipSettings const&);
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCAPI UnzipSettings();
30
31 MCAPI ~UnzipSettings();
32 // NOLINTEND
33
34public:
35 // constructor thunks
36 // NOLINTBEGIN
37 MCAPI void* $ctor();
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCAPI void $dtor();
44 // NOLINTEND
45};
46
47} // namespace Core::ZipUtils
Definition UnzipSettings.h:7
Definition Alias.h:14