LeviLamina
Loading...
Searching...
No Matches
IceTransportFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/scoped_refptr.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class IceTransportInterface; }
11namespace webrtc { struct IceTransportInit; }
12// clang-format on
13
14namespace webrtc {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 virtual ~IceTransportFactory() = default;
21
22 virtual ::webrtc::scoped_refptr<::webrtc::IceTransportInterface>
23 CreateIceTransport(::std::string const&, int, ::webrtc::IceTransportInit) = 0;
24 // NOLINTEND
25
26public:
27 // virtual function thunks
28 // NOLINTBEGIN
29
30 // NOLINTEND
31};
32
33} // namespace webrtc
Definition IceTransportFactory.h:16
Definition IceTransportInterface.h:15
Definition IceTransportInit.h:7