LeviLamina
Loading...
Searching...
No Matches
EduJoinServerResponse.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace Social {
6
7struct EduJoinServerResponse {
8public:
9 // member variables
10 // NOLINTBEGIN
15 // NOLINTEND
16
17#ifdef LL_PLAT_S
18public:
19 // prevent constructor by default
20 EduJoinServerResponse& operator=(EduJoinServerResponse const&);
21 EduJoinServerResponse(EduJoinServerResponse const&);
22 EduJoinServerResponse();
23
24#else // LL_PLAT_C
25public:
26 // prevent constructor by default
27 EduJoinServerResponse& operator=(EduJoinServerResponse const&);
28 EduJoinServerResponse();
29
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCNAPI EduJoinServerResponse(::Social::EduJoinServerResponse&&);
36
37 MCNAPI EduJoinServerResponse(::Social::EduJoinServerResponse const&);
38
39 MCNAPI ~EduJoinServerResponse();
40#endif
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46#ifdef LL_PLAT_C
47 MCNAPI void* $ctor(::Social::EduJoinServerResponse&&);
48
49 MCNAPI void* $ctor(::Social::EduJoinServerResponse const&);
50#endif
51 // NOLINTEND
52
53public:
54 // destructor thunk
55 // NOLINTBEGIN
56#ifdef LL_PLAT_C
57 MCNAPI void $dtor();
58#endif
59 // NOLINTEND
60};
61
62} // namespace Social
Definition EduJoinServerResponse.h:7
Definition Alias.h:14