LeviLamina
Loading...
Searching...
No Matches
IceCandidate.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class Candidate; }
8// clang-format on
9
10namespace webrtc {
11
12class IceCandidate {
13public:
14 // member variables
15 // NOLINTBEGIN
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 IceCandidate& operator=(IceCandidate const&);
24 IceCandidate(IceCandidate const&);
25 IceCandidate();
26
27public:
28 // member functions
29 // NOLINTBEGIN
30 MCNAPI IceCandidate(::std::string_view sdp_mid, int sdp_mline_index, ::webrtc::Candidate const& candidate);
31
32 MCNAPI ::std::string ToString() const;
33
34 MCNAPI ~IceCandidate();
35 // NOLINTEND
36
37public:
38 // constructor thunks
39 // NOLINTBEGIN
40 MCNAPI void* $ctor(::std::string_view sdp_mid, int sdp_mline_index, ::webrtc::Candidate const& candidate);
41 // NOLINTEND
42
43public:
44 // destructor thunk
45 // NOLINTBEGIN
46 MCNAPI void $dtor();
47 // NOLINTEND
48};
49
50} // namespace webrtc
Definition Candidate.h:15
MCAPI void * $ctor(::std::string_view sdp_mid, int sdp_mline_index, ::webrtc::Candidate const &candidate)
MCAPI void $dtor()
MCAPI::std::string ToString() const
MCAPI IceCandidate(::std::string_view sdp_mid, int sdp_mline_index, ::webrtc::Candidate const &candidate)
Definition Alias.h:14