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