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