LeviLamina
Loading...
Searching...
No Matches
RTCLocalIceCandidateStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RTCIceCandidateStats.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class RTCStats; }
11namespace webrtc { class Timestamp; }
12// clang-format on
13
14namespace webrtc {
15
16class RTCLocalIceCandidateStats : public ::webrtc::RTCIceCandidateStats {
17public:
18 // prevent constructor by default
19 RTCLocalIceCandidateStats();
20
21public:
22 // virtual functions
23 // NOLINTBEGIN
24 virtual ::std::unique_ptr<::webrtc::RTCStats> copy() const /*override*/;
25
26 virtual char const* type() const /*override*/;
27
28 virtual ~RTCLocalIceCandidateStats() /*override*/ = default;
29 // NOLINTEND
30
31public:
32 // member functions
33 // NOLINTBEGIN
34 MCNAPI RTCLocalIceCandidateStats(::std::string id, ::webrtc::Timestamp timestamp);
35 // NOLINTEND
36
37public:
38 // static variables
39 // NOLINTBEGIN
40 MCNAPI static ::std::add_lvalue_reference_t<char const[]> kType();
41 // NOLINTEND
42
43public:
44 // constructor thunks
45 // NOLINTBEGIN
46 MCNAPI void* $ctor(::std::string id, ::webrtc::Timestamp timestamp);
47 // NOLINTEND
48
49public:
50 // virtual function thunks
51 // NOLINTBEGIN
52 MCNAPI ::std::unique_ptr<::webrtc::RTCStats> $copy() const;
53
54 MCNAPI char const* $type() const;
55
56
57 // NOLINTEND
58
59public:
60 // vftables
61 // NOLINTBEGIN
62 MCNAPI static void** $vftable();
63 // NOLINTEND
64};
65
66} // namespace webrtc
Definition RTCIceCandidateStats.h:16
MCAPI void * $ctor(::std::string id, ::webrtc::Timestamp timestamp)
static MCAPI void ** $vftable()
static MCAPI ::std::add_lvalue_reference_t< char const[]> kType()
MCAPI ::std::unique_ptr<::webrtc::RTCStats > $copy() const
MCAPI RTCLocalIceCandidateStats(::std::string id, ::webrtc::Timestamp timestamp)
MCAPI char const * $type() const
Definition RTCStats.h:12
Definition Timestamp.h:15