LeviLamina
Loading...
Searching...
No Matches
RTCPeerConnectionStats.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 RTCPeerConnectionStats : public ::webrtc::RTCStats {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 RTCPeerConnectionStats& operator=(RTCPeerConnectionStats const&);
27 RTCPeerConnectionStats(RTCPeerConnectionStats const&);
28 RTCPeerConnectionStats();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::std::vector<::webrtc::Attribute> AttributesImpl(uint64 additional_capacity) const /*override*/;
34
35 virtual ::std::unique_ptr<::webrtc::RTCStats> copy() const /*override*/;
36
37 virtual char const* type() const /*override*/;
38
39 virtual ~RTCPeerConnectionStats() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI RTCPeerConnectionStats(::std::string id, ::webrtc::Timestamp timestamp);
46 // NOLINTEND
47
48public:
49 // static variables
50 // NOLINTBEGIN
51 MCNAPI static ::std::add_lvalue_reference_t<char const[]> kType();
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor(::std::string id, ::webrtc::Timestamp timestamp);
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI ::std::vector<::webrtc::Attribute> $AttributesImpl(uint64 additional_capacity) const;
64
65 MCNAPI ::std::unique_ptr<::webrtc::RTCStats> $copy() const;
66
67 MCNAPI char const* $type() const;
68
69
70 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace webrtc
Definition Attribute.h:7
MCAPI char const * $type() const
static MCAPI ::std::add_lvalue_reference_t< char const[]> kType()
MCAPI ::std::unique_ptr<::webrtc::RTCStats > $copy() const
MCAPI void * $ctor(::std::string id, ::webrtc::Timestamp timestamp)
MCAPI RTCPeerConnectionStats(::std::string id, ::webrtc::Timestamp timestamp)
MCAPI ::std::vector<::webrtc::Attribute > $AttributesImpl(uint64 additional_capacity) const
static MCAPI void ** $vftable()
Definition RTCStats.h:12
Definition Timestamp.h:15
Definition Alias.h:14