LeviLamina
Loading...
Searching...
No Matches
SctpTransportInterface.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 DtlsTransportInterface; }
12namespace webrtc { class SctpTransportInformation; }
13namespace webrtc { class SctpTransportObserverInterface; }
14// clang-format on
15
16namespace webrtc {
17
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 3
23 virtual ::webrtc::scoped_refptr<::webrtc::DtlsTransportInterface> dtls_transport() const = 0;
24
25 // vIndex: 4
26 virtual ::webrtc::SctpTransportInformation Information() const = 0;
27
28 // vIndex: 5
29 virtual void RegisterObserver(::webrtc::SctpTransportObserverInterface*) = 0;
30
31 // vIndex: 6
32 virtual void UnregisterObserver() = 0;
33
34 // vIndex: 2
35 virtual ~SctpTransportInterface() /*override*/;
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCNAPI void $dtor();
42 // NOLINTEND
43
44public:
45 // virtual function thunks
46 // NOLINTBEGIN
47
48 // NOLINTEND
49};
50
51} // namespace webrtc
Definition RefCountInterface.h:10
Definition SctpTransportInterface.h:18
Definition SctpTransportObserverInterface.h:12