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