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();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCAPI ConfirmationRequest(::Settings::ConfirmationRequest const&);
26
27 MCFOLD ::Settings::ConfirmationRequest& operator=(::Settings::ConfirmationRequest&&);
28
29 MCAPI ~ConfirmationRequest();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCFOLD void* $ctor(::Settings::ConfirmationRequest const&);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCFOLD void $dtor();
42 // NOLINTEND
43};
44
45} // namespace Settings
Definition ConfirmationRequest.h:7