LeviLamina
Loading...
Searching...
No Matches
AsyncProgressInfo.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/client/settings/AsyncProgressCancelInfo.h"
7
8namespace Settings {
9
10struct AsyncProgressInfo {
11public:
12 // member variables
13 // NOLINTBEGIN
14 ::ll::TypedStorage<8, 32, ::std::string> mTitle;
15 ::ll::TypedStorage<8, 32, ::std::string> mDescription;
16 ::ll::TypedStorage<8, 104, ::std::optional<::Settings::AsyncProgressCancelInfo>> mCancelInfo;
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 AsyncProgressInfo& operator=(AsyncProgressInfo const&);
22 AsyncProgressInfo(AsyncProgressInfo const&);
23 AsyncProgressInfo();
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI ::Settings::AsyncProgressInfo& operator=(::Settings::AsyncProgressInfo&&);
29
30 MCAPI ~AsyncProgressInfo();
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCAPI void $dtor();
37 // NOLINTEND
38};
39
40} // namespace Settings
Definition AsyncProgressInfo.h:7