LeviLamina
Loading...
Searching...
No Matches
ZipProgressList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core::ZipUtils { class ZipProgress; }
8// clang-format on
9
10namespace Core::ZipUtils {
11
12struct ZipProgressList {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ZipProgressList& operator=(ZipProgressList const&);
23 ZipProgressList(ZipProgressList const&);
24 ZipProgressList();
25
26public:
27 // member functions
28 // NOLINTBEGIN
29 MCNAPI_C uint64 _getSum(::std::function<uint(::std::shared_ptr<::Core::ZipUtils::ZipProgress>)> getNumCallback);
30
31 MCNAPI_C ::std::shared_ptr<::Core::ZipUtils::ZipProgress> createProgress();
32 // NOLINTEND
33};
34
35} // namespace Core::ZipUtils
Definition ZipProgress.h:7
Definition Alias.h:14