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