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