LeviLamina
Loading...
Searching...
No Matches
ZipProgressList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/threading/Mutex.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace Core::ZipUtils { class ZipProgress; }
11// clang-format on
12
13namespace Core::ZipUtils {
14
16public:
17 // member variables
18 // NOLINTBEGIN
19 ::ll::TypedStorage<8, 24, ::std::vector<::std::shared_ptr<::Core::ZipUtils::ZipProgress>>> mZipProgress;
20 ::ll::TypedStorage<8, 80, ::Bedrock::Threading::Mutex> mProgressLock;
21 // NOLINTEND
22
23public:
24 // member functions
25 // NOLINTBEGIN
26#ifdef LL_PLAT_C
27 MCAPI uint64 _getSum(::std::function<uint(::std::shared_ptr<::Core::ZipUtils::ZipProgress>)> getNumCallback);
28
29 MCAPI ::std::shared_ptr<::Core::ZipUtils::ZipProgress> createProgress();
30#endif
31 // NOLINTEND
32};
33
34} // namespace Core::ZipUtils
Definition ZipProgress.h:7
Definition ZipProgressList.h:15