LeviLamina
Loading...
Searching...
No Matches
DtlsTransportInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class DtlsTransportInformation; }
12namespace webrtc { class DtlsTransportObserverInterface; }
13namespace webrtc { class IceTransportInterface; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 3
23 virtual ::webrtc::scoped_refptr<::webrtc::IceTransportInterface> ice_transport() = 0;
24
25 // vIndex: 4
26 virtual ::webrtc::DtlsTransportInformation Information() = 0;
27
28 // vIndex: 5
29 virtual void RegisterObserver(::webrtc::DtlsTransportObserverInterface*) = 0;
30
31 // vIndex: 6
32 virtual void UnregisterObserver() = 0;
33
34 // vIndex: 2
35 virtual ~DtlsTransportInterface() /*override*/ = default;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
50
51} // namespace webrtc
Definition DtlsTransportInterface.h:18
Definition DtlsTransportObserverInterface.h:13
Definition RefCountInterface.h:10