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