LeviLamina
Loading...
Searching...
No Matches
ZipProgress.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::ZipUtils {
6
7class ZipProgress {
8public:
9 // member variables
10 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 ZipProgress& operator=(ZipProgress const&);
19 ZipProgress(ZipProgress const&);
20 ZipProgress();
21
22public:
23 // virtual functions
24 // NOLINTBEGIN
25 virtual ~ZipProgress();
26
27 virtual void clear();
28 // NOLINTEND
29
30public:
31 // member functions
32 // NOLINTBEGIN
33
34 // NOLINTEND
35
36public:
37 // constructor thunks
38 // NOLINTBEGIN
39 MCNAPI_C void* $ctor();
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI void $clear();
52
53
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace Core::ZipUtils
static MCAPI void ** $vftable()
Definition Alias.h:14