LeviLamina
Loading...
Searching...
No Matches
RTCSentRtpStreamStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RTCRtpStreamStats.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class Attribute; }
11namespace webrtc { class RTCStats; }
12namespace webrtc { class Timestamp; }
13// clang-format on
14
15namespace webrtc {
16
17class RTCSentRtpStreamStats : public ::webrtc::RTCRtpStreamStats {
18public:
19 // member variables
20 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 RTCSentRtpStreamStats& operator=(RTCSentRtpStreamStats const&);
28 RTCSentRtpStreamStats(RTCSentRtpStreamStats const&);
29 RTCSentRtpStreamStats();
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 virtual ::std::vector<::webrtc::Attribute> AttributesImpl(uint64 additional_capacity) const /*override*/;
35
36 virtual ::std::unique_ptr<::webrtc::RTCStats> copy() const /*override*/;
37
38 virtual char const* type() const /*override*/;
39
40 virtual ~RTCSentRtpStreamStats() /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI RTCSentRtpStreamStats(::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
58 MCNAPI void* $ctor(::std::string id, ::webrtc::Timestamp timestamp);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
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
Definition RTCRtpStreamStats.h:16
MCAPI char const * $type() const
MCAPI ::std::unique_ptr<::webrtc::RTCStats > $copy() const
static MCAPI ::std::add_lvalue_reference_t< char const[]> kType()
MCAPI RTCSentRtpStreamStats(::std::string id, ::webrtc::Timestamp timestamp)
MCAPI ::std::vector<::webrtc::Attribute > $AttributesImpl(uint64 additional_capacity) const
static MCAPI void ** $vftable()
MCAPI void * $ctor(::std::string id, ::webrtc::Timestamp timestamp)
Definition RTCStats.h:12
Definition Timestamp.h:15
Definition Alias.h:14