LeviLamina
Loading...
Searching...
No Matches
ZipProgress.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Core::ZipUtils {
6
8public:
9 // member variables
10 // NOLINTBEGIN
11 ::ll::TypedStorage<4, 4, ::std::atomic<uint>> mFilesDone;
12 ::ll::TypedStorage<4, 4, ::std::atomic<uint>> mFilesSkipped;
13 ::ll::TypedStorage<4, 4, ::std::atomic<uint>> mTotalFiles;
14 // NOLINTEND
15
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 virtual ~ZipProgress() = default;
20
21 virtual void clear();
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27 MCAPI void $clear();
28
29
30 // NOLINTEND
31
32public:
33 // vftables
34 // NOLINTBEGIN
35 MCNAPI static void** $vftable();
36 // NOLINTEND
37};
38
39} // namespace Core::ZipUtils
Definition ZipProgress.h:7
static MCAPI void ** $vftable()