LeviLamina
Loading...
Searching...
No Matches
ITransportFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/nether_net/LogSeverity.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace NetherNet { class INetherNetTransportInterface; }
11namespace NetherNet { class INetherNetTransportInterfaceCallbacks; }
12namespace NetherNet { struct NetherNetTransportServerConfiguration; }
13namespace NetherNet { struct NetworkID; }
14// clang-format on
15
16namespace NetherNet {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 0
23 virtual ~ITransportFactory() = default;
24
25 // vIndex: 1
26 virtual void setLoggingLevel(::NetherNet::LogSeverity) = 0;
27
28 // vIndex: 2
29 virtual void suspendTransport() = 0;
30
31 // vIndex: 3
32 virtual void resumeTransport() = 0;
33
34 // vIndex: 4
35 virtual ::NetherNet::INetherNetTransportInterface* createTransportInterface(
39 ) = 0;
40
41 // vIndex: 5
42 virtual void destroyTransportInterface(::NetherNet::INetherNetTransportInterface*) = 0;
43 // NOLINTEND
44
45public:
46 // virtual function thunks
47 // NOLINTBEGIN
48
49 // NOLINTEND
50};
51
52} // namespace NetherNet
Definition INetherNetTransportInterfaceCallbacks.h:15
Definition INetherNetTransportInterface.h:21
Definition ITransportFactory.h:18
Definition NetherNetTransportServerConfiguration.h:7
Definition NetworkID.h:12