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 virtual ::webrtc::scoped_refptr<::webrtc::DtlsTransportInterface> dtls_transport() const = 0;
23
24 virtual ::webrtc::SctpTransportInformation Information() const = 0;
25
26 virtual void RegisterObserver(::webrtc::SctpTransportObserverInterface*) = 0;
27
28 virtual void UnregisterObserver() = 0;
29
30 virtual ~SctpTransportInterface() /*override*/;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCNAPI void $dtor();
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition DtlsTransportInterface.h:18
Definition RefCountInterface.h:10
Definition SctpTransportInformation.h:16
Definition SctpTransportInterface.h:18
Definition SctpTransportObserverInterface.h:12