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