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