LeviLamina
Loading...
Searching...
No Matches
JsonRpcError.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace JsonRpc {
6
7class JsonRpcError {
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 JsonRpcError(JsonRpcError const&);
18 JsonRpcError();
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
25 MCNAPI ::JsonRpc::JsonRpcError& operator=(::JsonRpc::JsonRpcError&&);
26
27 MCNAPI ::JsonRpc::JsonRpcError& operator=(::JsonRpc::JsonRpcError const&);
28
29 MCNAPI ~JsonRpcError();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace JsonRpc
Definition JsonRpcError.h:7
MCAPI void * $ctor(::JsonRpc::JsonRpcError &&)
MCAPI JsonRpcError(::JsonRpc::JsonRpcError &&)
MCAPI::JsonRpc::JsonRpcError & operator=(::JsonRpc::JsonRpcError const &)
MCAPI::JsonRpc::JsonRpcError & operator=(::JsonRpc::JsonRpcError &&)
Definition Alias.h:14