LeviLamina
Loading...
Searching...
No Matches
JsepIceCandidate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/IceCandidateInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace cricket { class Candidate; }
11// clang-format on
12
13namespace webrtc {
14
15class JsepIceCandidate : public ::webrtc::IceCandidateInterface {
16public:
17 // member variables
18 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 JsepIceCandidate& operator=(JsepIceCandidate const&);
27 JsepIceCandidate(JsepIceCandidate const&);
28 JsepIceCandidate();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~JsepIceCandidate() /*override*/ = default;
34
35 virtual ::std::string sdp_mid() const /*override*/;
36
37 virtual int sdp_mline_index() const /*override*/;
38
39 virtual ::cricket::Candidate const& candidate() const /*override*/;
40
41 virtual ::std::string server_url() const /*override*/;
42
43 virtual bool ToString(::std::string* out) const /*override*/;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCNAPI JsepIceCandidate(::std::string const& sdp_mid, int sdp_mline_index, ::cricket::Candidate const& candidate);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::std::string const& sdp_mid, int sdp_mline_index, ::cricket::Candidate const& candidate);
56 // NOLINTEND
57
58public:
59 // virtual function thunks
60 // NOLINTBEGIN
61 MCNAPI ::std::string $sdp_mid() const;
62
63 MCNAPI int $sdp_mline_index() const;
64
65 MCNAPI ::cricket::Candidate const& $candidate() const;
66
67 MCNAPI ::std::string $server_url() const;
68
69 MCNAPI bool $ToString(::std::string* out) const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace webrtc
Definition Candidate.h:15
Definition IceCandidateInterface.h:12
MCAPI::std::string $server_url() const
MCAPI bool $ToString(::std::string *out) const
MCAPI::std::string $sdp_mid() const
MCAPI JsepIceCandidate(::std::string const &sdp_mid, int sdp_mline_index, ::cricket::Candidate const &candidate)
MCAPI void * $ctor(::std::string const &sdp_mid, int sdp_mline_index, ::cricket::Candidate const &candidate)
MCAPI::cricket::Candidate const & $candidate() const
MCAPI int $sdp_mline_index() const
static MCAPI void ** $vftable()
Definition Alias.h:14