LeviLamina
Loading...
Searching...
No Matches
MyStatsObserver.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountReleaseStatus.h"
7#include "mc/external/webrtc/StatsObserver.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class StatsReport; }
12// clang-format on
13
14namespace NetherNet {
15
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 MyStatsObserver& operator=(MyStatsObserver const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 2
34 virtual ~MyStatsObserver() /*override*/ = default;
35
36 // vIndex: 0
37 virtual void AddRef() const /*override*/;
38
39 // vIndex: 1
40 virtual ::webrtc::RefCountReleaseStatus Release() const /*override*/;
41
42 // vIndex: 3
43 virtual void OnComplete(::std::vector<::webrtc::StatsReport const*> const& reports) /*override*/;
44 // NOLINTEND
45
46public:
47 // virtual function thunks
48 // NOLINTBEGIN
49 MCNAPI void $AddRef() const;
50
51 MCNAPI ::webrtc::RefCountReleaseStatus $Release() const;
52
53 MCNAPI void $OnComplete(::std::vector<::webrtc::StatsReport const*> const& reports);
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace NetherNet
Definition MyStatsObserver.h:16
static MCAPI void ** $vftable()
MCAPI void $AddRef() const
MCAPI void $OnComplete(::std::vector<::webrtc::StatsReport const * > const &reports)
MCAPI::webrtc::RefCountReleaseStatus $Release() const
Definition StatsObserver.h:15
Definition Alias.h:14