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