LeviLamina
Loading...
Searching...
No Matches
ConnectRequest.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace NetherNet {
6
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 ConnectRequest& operator=(ConnectRequest const&);
20
21public:
22 // member functions
23 // NOLINTBEGIN
24 MCAPI ::std::string ToString() const;
25
26 MCAPI ~ConnectRequest();
27 // NOLINTEND
28
29public:
30 // static functions
31 // NOLINTBEGIN
32 MCFOLD static ::NetherNet::ConnectRequest Create(uint64 sessionId, ::std::string sdp);
33
34 MCAPI static ::std::optional<::NetherNet::ConnectRequest> TryParse(::std::array<::std::string_view, 3> const& tokens
35 );
36 // NOLINTEND
37
38public:
39 // static variables
40 // NOLINTBEGIN
41 MCAPI static ::std::string_view const& kIdentifier();
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49};
50
51} // namespace NetherNet
Definition ConnectRequest.h:7
Definition Alias.h:14