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