LeviLamina
Loading...
Searching...
No Matches
ADPopupButtonAction.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5class ADPopupButtonAction {
6public:
7 // ADPopupButtonAction inner types define
8 enum class Type : int {
9 Link = 0,
10 SignIn = 1,
11 Dismiss = 2,
12 RetrySignIn = 3,
13 AgeVerification = 4,
14 };
15
16public:
17 // member variables
18 // NOLINTBEGIN
23 // NOLINTEND
24
25#ifdef LL_PLAT_S
26public:
27 // prevent constructor by default
28 ADPopupButtonAction& operator=(ADPopupButtonAction const&);
29 ADPopupButtonAction(ADPopupButtonAction const&);
30 ADPopupButtonAction();
31
32#else // LL_PLAT_C
33public:
34 // prevent constructor by default
35 ADPopupButtonAction(ADPopupButtonAction const&);
36 ADPopupButtonAction();
37
38#endif
39public:
40 // member functions
41 // NOLINTBEGIN
42#ifdef LL_PLAT_C
43 MCNAPI ::ADPopupButtonAction& operator=(::ADPopupButtonAction&&);
44
45 MCNAPI ::ADPopupButtonAction& operator=(::ADPopupButtonAction const&);
46
47 MCNAPI ~ADPopupButtonAction();
48#endif
49 // NOLINTEND
50
51public:
52 // destructor thunk
53 // NOLINTBEGIN
54#ifdef LL_PLAT_C
55 MCNAPI void $dtor();
56#endif
57 // NOLINTEND
58};
Definition Alias.h:14