LeviLamina
Loading...
Searching...
No Matches
DtlsTransportObserverInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace webrtc { class DtlsTransportInformation; }
8namespace webrtc { class RTCError; }
9// clang-format on
10
11namespace webrtc {
12
14public:
15 // virtual functions
16 // NOLINTBEGIN
17 virtual void OnStateChange(::webrtc::DtlsTransportInformation) = 0;
18
19 virtual void OnError(::webrtc::RTCError) = 0;
20
21 virtual ~DtlsTransportObserverInterface() = default;
22 // NOLINTEND
23
24public:
25 // virtual function thunks
26 // NOLINTBEGIN
27
28 // NOLINTEND
29};
30
31} // namespace webrtc
Definition DtlsTransportInformation.h:16
Definition DtlsTransportObserverInterface.h:13
Definition RTCError.h:10