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