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