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(EduJoinServerResponse const&);
28 EduJoinServerResponse();
29
30#endif
31public:
32 // member functions
33 // NOLINTBEGIN
34#ifdef LL_PLAT_C
35 MCNAPI ::Social::EduJoinServerResponse& operator=(::Social::EduJoinServerResponse const&);
36
37 MCNAPI ~EduJoinServerResponse();
38#endif
39 // NOLINTEND
40
41public:
42 // destructor thunk
43 // NOLINTBEGIN
44#ifdef LL_PLAT_C
45 MCNAPI void $dtor();
46#endif
47 // NOLINTEND
48};
49
50} // namespace Social
Definition EduJoinServerResponse.h:7
Definition Alias.h:14