LeviLamina
Loading...
Searching...
No Matches
RTCStats.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class Attribute; }
8// clang-format on
9
10namespace webrtc {
11
12class RTCStats {
13public:
14 // member variables
15 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 RTCStats& operator=(RTCStats const&);
23 RTCStats();
24
25public:
26 // virtual functions
27 // NOLINTBEGIN
28 // vIndex: 0
29 virtual ~RTCStats() = default;
30
31 // vIndex: 1
32 virtual ::std::unique_ptr<::webrtc::RTCStats> copy() const = 0;
33
34 // vIndex: 2
35 virtual char const* type() const = 0;
36
37 // vIndex: 3
38 virtual ::std::vector<::webrtc::Attribute> AttributesImpl(uint64) const;
39 // NOLINTEND
40
41public:
42 // member functions
43 // NOLINTBEGIN
44 MCAPI ::std::vector<::webrtc::Attribute> Attributes() const;
45
46 MCAPI RTCStats(::webrtc::RTCStats const&);
47
48 MCAPI ::std::string ToJson() const;
49 // NOLINTEND
50
51public:
52 // constructor thunks
53 // NOLINTBEGIN
54 MCAPI void* $ctor(::webrtc::RTCStats const&);
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66
67 // NOLINTEND
68
69public:
70 // vftables
71 // NOLINTBEGIN
72 MCAPI static void** $vftable();
73 // NOLINTEND
74};
75
76} // namespace webrtc
Definition Attribute.h:13
Definition RTCStats.h:12
Definition Alias.h:14