LeviLamina
Loading...
Searching...
No Matches
ContextProxy.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/nether_net/IContext.h"
7#include "mc/deps/nether_net/LogSeverity.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace NetherNet { class ILanDiscovery; }
12namespace NetherNet { class RtcThreadManager; }
13namespace NetherNet { struct GlobalConfiguration; }
14// clang-format on
15
16namespace NetherNet {
17
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 ContextProxy& operator=(ContextProxy const&);
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 0
35 virtual ~ContextProxy() /*override*/;
36
37 // vIndex: 1
38 virtual ::NetherNet::RtcThreadManager const& getSignalThread() const /*override*/;
39
40 // vIndex: 2
41 virtual ::NetherNet::RtcThreadManager const& getNetworkThread() const /*override*/;
42
43 // vIndex: 3
44 virtual ::NetherNet::RtcThreadManager const& getWorkerThread() const /*override*/;
45
46 // vIndex: 4
47 virtual ::NetherNet::ILanDiscovery& getLanDiscovery() /*override*/;
48
49 // vIndex: 5
50 virtual void onSuspend() /*override*/;
51
52 // vIndex: 6
53 virtual void onResume() /*override*/;
54
55 // vIndex: 7
56 virtual ::NetherNet::GlobalConfiguration const& getGlobalConfig() const /*override*/;
57
58 // vIndex: 9
59 virtual void setLoggingLevel(::NetherNet::LogSeverity min) /*override*/;
60
61 // vIndex: 8
62 virtual void _logMessage(::NetherNet::LogSeverity level, char const* fmt, char* args) const /*override*/;
63 // NOLINTEND
64
65public:
66 // destructor thunk
67 // NOLINTBEGIN
68 MCNAPI void $dtor();
69 // NOLINTEND
70
71public:
72 // virtual function thunks
73 // NOLINTBEGIN
74 MCNAPI ::NetherNet::RtcThreadManager const& $getSignalThread() const;
75
76 MCNAPI ::NetherNet::RtcThreadManager const& $getNetworkThread() const;
77
78 MCNAPI ::NetherNet::RtcThreadManager const& $getWorkerThread() const;
79
80 MCNAPI ::NetherNet::ILanDiscovery& $getLanDiscovery();
81
82 MCNAPI void $onSuspend();
83
84 MCNAPI void $onResume();
85
86 MCNAPI ::NetherNet::GlobalConfiguration const& $getGlobalConfig() const;
87
88 MCNAPI void $setLoggingLevel(::NetherNet::LogSeverity min);
89
90 MCNAPI void $_logMessage(::NetherNet::LogSeverity level, char const* fmt, char* args) const;
91 // NOLINTEND
92
93public:
94 // vftables
95 // NOLINTBEGIN
96 MCNAPI static void** $vftable();
97 // NOLINTEND
98};
99
100} // namespace NetherNet
Definition ContextProxy.h:18
MCAPI::NetherNet::RtcThreadManager const & $getSignalThread() const
MCAPI::NetherNet::RtcThreadManager const & $getWorkerThread() const
static MCAPI void ** $vftable()
MCAPI void $setLoggingLevel(::NetherNet::LogSeverity min)
MCAPI::NetherNet::ILanDiscovery & $getLanDiscovery()
MCAPI::NetherNet::GlobalConfiguration const & $getGlobalConfig() const
MCAPI::NetherNet::RtcThreadManager const & $getNetworkThread() const
MCAPI void $_logMessage(::NetherNet::LogSeverity level, char const *fmt, char *args) const
Definition IContext.h:18
Definition Alias.h:14