LeviLamina
Loading...
Searching...
No Matches
CreateSessionDescriptionObserver.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 CreateSessionDescriptionObserver; }
11namespace webrtc { class RTCError; }
12namespace webrtc { class SessionDescriptionInterface; }
13// clang-format on
14
15namespace NetherNet {
16
17class CreateSessionDescriptionObserver : public ::rtc::RefCountedObject<::webrtc::CreateSessionDescriptionObserver> {
18public:
19 // member variables
20 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 2
35 virtual ~CreateSessionDescriptionObserver() /*override*/ = default;
36
37 // vIndex: 3
38 virtual void OnSuccess(::webrtc::SessionDescriptionInterface* pSessionDescription) /*override*/;
39
40 // vIndex: 4
41 virtual void OnFailure(::webrtc::RTCError error) /*override*/;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI void $OnSuccess(::webrtc::SessionDescriptionInterface* pSessionDescription);
54
55 MCAPI void $OnFailure(::webrtc::RTCError error);
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
64
65} // namespace NetherNet
Definition CreateSessionDescriptionObserver.h:17
Definition RefCountedObject.h:8
Definition RTCError.h:10
Definition SessionDescriptionInterface.h:18
Definition Alias.h:14