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#include "mc/external/webrtc/CreateSessionDescriptionObserver.h"
8
9// auto generated forward declare list
10// clang-format off
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 // virtual function thunks
46 // NOLINTBEGIN
47 MCNAPI void $OnSuccess(::webrtc::SessionDescriptionInterface* pSessionDescription);
48
49 MCNAPI void $OnFailure(::webrtc::RTCError error);
50 // NOLINTEND
51
52public:
53 // vftables
54 // NOLINTBEGIN
55 MCNAPI static void** $vftable();
56 // NOLINTEND
57};
58
59} // namespace NetherNet
Definition CreateSessionDescriptionObserver.h:17
MCAPI void $OnSuccess(::webrtc::SessionDescriptionInterface *pSessionDescription)
MCAPI void $OnFailure(::webrtc::RTCError error)
Definition RefCountedObject.h:8
Definition RTCError.h:10
Definition SessionDescriptionInterface.h:18
Definition Alias.h:14