LeviLamina
Loading...
Searching...
No Matches
NetworkSessionOwner.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7#include "mc/network/TransportLayer.h"
8
9class NetworkSessionOwner : public ::Bedrock::EnableNonOwnerReferences {
10public:
11 // member variables
12 // NOLINTBEGIN
14 // NOLINTEND
15
16public:
17 // prevent constructor by default
18 NetworkSessionOwner& operator=(NetworkSessionOwner const&);
19 NetworkSessionOwner(NetworkSessionOwner const&);
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ~NetworkSessionOwner() /*override*/ = default;
25 // NOLINTEND
26
27public:
28 // member functions
29 // NOLINTBEGIN
31
32 MCNAPI void createNetworkSession(::TransportLayer transportLayer);
33
34 MCNAPI void destroyNetworkSession();
35
36 MCNAPI ::TransportLayer getTransportLayer() const;
37
38 MCNAPI bool hasNetworkSession() const;
39 // NOLINTEND
40
41public:
42 // constructor thunks
43 // NOLINTBEGIN
44 MCNAPI void* $ctor();
45 // NOLINTEND
46
47public:
48 // vftables
49 // NOLINTBEGIN
50 MCNAPI static void** $vftable();
51 // NOLINTEND
52};
Definition EnableNonOwnerReferences.h:7
MCAPI::TransportLayer getTransportLayer() const
MCAPI void * $ctor()
MCAPI NetworkSessionOwner()
MCAPI void destroyNetworkSession()
static MCAPI void ** $vftable()
MCAPI bool hasNetworkSession() const
MCAPI void createNetworkSession(::TransportLayer transportLayer)
Definition Alias.h:14