LeviLamina
Loading...
Searching...
No Matches
RTCIceCandidateStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RTCStats.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class Attribute; }
11namespace webrtc { class Timestamp; }
12// clang-format on
13
14namespace webrtc {
15
16class RTCIceCandidateStats : public ::webrtc::RTCStats {
17public:
18 // member variables
19 // NOLINTBEGIN
38 // NOLINTEND
39
40public:
41 // prevent constructor by default
42 RTCIceCandidateStats& operator=(RTCIceCandidateStats const&);
43 RTCIceCandidateStats();
44
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 virtual ::std::vector<::webrtc::Attribute> AttributesImpl(uint64 additional_capacity) const /*override*/;
49
50 virtual ::std::unique_ptr<::webrtc::RTCStats> copy() const /*override*/;
51
52 virtual char const* type() const /*override*/;
53
54 virtual ~RTCIceCandidateStats() /*override*/;
55 // NOLINTEND
56
57public:
58 // member functions
59 // NOLINTBEGIN
61
62 MCNAPI RTCIceCandidateStats(::std::string id, ::webrtc::Timestamp timestamp, bool is_remote);
63 // NOLINTEND
64
65public:
66 // static variables
67 // NOLINTBEGIN
68 MCNAPI static ::std::add_lvalue_reference_t<char const[]> kType();
69 // NOLINTEND
70
71public:
72 // constructor thunks
73 // NOLINTBEGIN
75
76 MCNAPI void* $ctor(::std::string id, ::webrtc::Timestamp timestamp, bool is_remote);
77 // NOLINTEND
78
79public:
80 // destructor thunk
81 // NOLINTBEGIN
82 MCNAPI void $dtor();
83 // NOLINTEND
84
85public:
86 // virtual function thunks
87 // NOLINTBEGIN
88 MCNAPI ::std::vector<::webrtc::Attribute> $AttributesImpl(uint64 additional_capacity) const;
89
90 MCNAPI ::std::unique_ptr<::webrtc::RTCStats> $copy() const;
91
92 MCNAPI char const* $type() const;
93
94
95 // NOLINTEND
96
97public:
98 // vftables
99 // NOLINTBEGIN
100 MCNAPI static void** $vftable();
101 // NOLINTEND
102};
103
104} // namespace webrtc
Definition Attribute.h:7
Definition RTCIceCandidateStats.h:16
MCAPI ::std::unique_ptr<::webrtc::RTCStats > $copy() const
MCAPI char const * $type() const
MCAPI ::std::vector<::webrtc::Attribute > $AttributesImpl(uint64 additional_capacity) const
MCAPI void * $ctor(::webrtc::RTCIceCandidateStats const &)
static MCAPI ::std::add_lvalue_reference_t< char const[]> kType()
MCAPI RTCIceCandidateStats(::std::string id, ::webrtc::Timestamp timestamp, bool is_remote)
MCAPI RTCIceCandidateStats(::webrtc::RTCIceCandidateStats const &)
static MCAPI void ** $vftable()
MCAPI void * $ctor(::std::string id, ::webrtc::Timestamp timestamp, bool is_remote)
Definition RTCStats.h:12
Definition Timestamp.h:15
Definition Alias.h:14