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