LeviLamina
Loading...
Searching...
No Matches
FileDownloadManager.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class FileDownloadManager : public ::std::enable_shared_from_this<::FileDownloadManager> {
6public:
7 // member variables
8 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 0
33 virtual ~FileDownloadManager() = default;
34
35 // vIndex: 1
36 virtual void update();
37
38 // vIndex: 2
39 virtual void cancelDownload();
40
41 // vIndex: 3
42 virtual float getDownloadProgress() const;
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48
49 // NOLINTEND
50
51public:
52 // virtual function thunks
53 // NOLINTBEGIN
54
55 // NOLINTEND
56};
Definition FileDownloadManager.h:5
Definition Alias.h:14