LeviLamina
Loading...
Searching...
No Matches
ReceiveStreamInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc {
6
8public:
9 // ReceiveStreamInterface inner types declare
10 // clang-format off
12 // clang-format on
13
14 // ReceiveStreamInterface inner types define
15 struct ReceiveStreamRtpConfig {
16 public:
17 // member variables
18 // NOLINTBEGIN
21 // NOLINTEND
22
23 public:
24 // prevent constructor by default
25 ReceiveStreamRtpConfig& operator=(ReceiveStreamRtpConfig const&);
26 ReceiveStreamRtpConfig(ReceiveStreamRtpConfig const&);
27 ReceiveStreamRtpConfig();
28 };
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~ReceiveStreamInterface() = default;
34 // NOLINTEND
35};
36
37} // namespace webrtc
Definition ReceiveStreamInterface.h:7
Definition Alias.h:14
Definition ReceiveStreamInterface.h:15