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
11#ifdef LL_PLAT_S
13#else // LL_PLAT_C
15#endif
19 // NOLINTEND
20
21#ifdef LL_PLAT_S
22public:
23 // prevent constructor by default
24 EduJoinServerResponse& operator=(EduJoinServerResponse const&);
25 EduJoinServerResponse(EduJoinServerResponse const&);
26 EduJoinServerResponse();
27
28#else // LL_PLAT_C
29public:
30 // prevent constructor by default
31 EduJoinServerResponse(EduJoinServerResponse const&);
32 EduJoinServerResponse();
33
34#endif
35public:
36 // member functions
37 // NOLINTBEGIN
38#ifdef LL_PLAT_C
39 MCNAPI ::Social::EduJoinServerResponse& operator=(::Social::EduJoinServerResponse const&);
40
41 MCNAPI ~EduJoinServerResponse();
42#endif
43 // NOLINTEND
44
45public:
46 // destructor thunk
47 // NOLINTBEGIN
48#ifdef LL_PLAT_C
49 MCNAPI void $dtor();
50#endif
51 // NOLINTEND
52};
53
54} // namespace Social
Definition EduJoinServerResponse.h:7
Definition Alias.h:14