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