LeviLamina
Loading...
Searching...
No Matches
StreamCollectionInterface.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RefCountInterface.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { class MediaStreamInterface; }
11namespace webrtc { class MediaStreamTrackInterface; }
12// clang-format on
13
14namespace webrtc {
15
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 3
21 virtual uint64 count() = 0;
22
23 // vIndex: 4
24 virtual ::webrtc::MediaStreamInterface* at(uint64) = 0;
25
26 // vIndex: 5
27 virtual ::webrtc::MediaStreamInterface* find(::std::string const&) = 0;
28
29 // vIndex: 6
30 virtual ::webrtc::MediaStreamTrackInterface* FindAudioTrack(::std::string const&) = 0;
31
32 // vIndex: 7
33 virtual ::webrtc::MediaStreamTrackInterface* FindVideoTrack(::std::string const&) = 0;
34
35 // vIndex: 2
36 virtual ~StreamCollectionInterface() /*override*/ = default;
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42
43 // NOLINTEND
44};
45
46} // namespace webrtc
Definition RefCountInterface.h:10
Definition StreamCollectionInterface.h:16