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
17public:
18 // prevent constructor by default
19 EduJoinServerResponse& operator=(EduJoinServerResponse const&);
20 EduJoinServerResponse();
21
22public:
23 // member functions
24 // NOLINTBEGIN
25 MCNAPI_C EduJoinServerResponse(::Social::EduJoinServerResponse&&);
26
27 MCNAPI_C EduJoinServerResponse(::Social::EduJoinServerResponse const&);
28
29 MCNAPI_C ~EduJoinServerResponse();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI_C void* $ctor(::Social::EduJoinServerResponse&&);
36
37 MCNAPI_C void* $ctor(::Social::EduJoinServerResponse const&);
38 // NOLINTEND
39
40public:
41 // destructor thunk
42 // NOLINTBEGIN
43 MCNAPI_C void $dtor();
44 // NOLINTEND
45};
46
47} // namespace Social
Definition EduJoinServerResponse.h:7
Definition Alias.h:14