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 MCNAPI ::std::string ToString() const;
25
27 // NOLINTEND
28
29public:
30 // static functions
31 // NOLINTBEGIN
32 MCNAPI static ::NetherNet::ConnectRequest Create(uint64 sessionId, ::std::string sdp);
33
34 MCNAPI static ::std::optional<::NetherNet::ConnectRequest>
35 TryParse(::std::array<::std::string_view, 3> const& tokens);
36 // NOLINTEND
37
38public:
39 // static variables
40 // NOLINTBEGIN
41 MCNAPI static ::std::string_view const& kIdentifier();
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCNAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace NetherNet
Definition ConnectRequest.h:7
static MCAPI ::NetherNet::ConnectRequest Create(uint64 sessionId, ::std::string sdp)
static MCAPI ::std::optional<::NetherNet::ConnectRequest > TryParse(::std::array<::std::string_view, 3 > const &tokens)
MCAPI::std::string ToString() const
static MCAPI ::std::string_view const & kIdentifier()
Definition Alias.h:14