LeviLamina
Loading...
Searching...
No Matches
StreamCollection.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/StreamCollectionInterface.h"
7#include "mc/external/webrtc/scoped_refptr.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class MediaStreamInterface; }
12namespace webrtc { class MediaStreamTrackInterface; }
13// clang-format on
14
15namespace webrtc {
16
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 StreamCollection& operator=(StreamCollection const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 3
34 virtual uint64 count() /*override*/;
35
36 // vIndex: 4
37 virtual ::webrtc::MediaStreamInterface* at(uint64 index) /*override*/;
38
39 // vIndex: 5
40 virtual ::webrtc::MediaStreamInterface* find(::std::string const& id) /*override*/;
41
42 // vIndex: 6
43 virtual ::webrtc::MediaStreamTrackInterface* FindAudioTrack(::std::string const& id) /*override*/;
44
45 // vIndex: 7
46 virtual ::webrtc::MediaStreamTrackInterface* FindVideoTrack(::std::string const& id) /*override*/;
47
48 // vIndex: 2
49 virtual ~StreamCollection() /*override*/ = default;
50 // NOLINTEND
51
52public:
53 // member functions
54 // NOLINTBEGIN
56
57 MCNAPI void RemoveStream(::webrtc::MediaStreamInterface* remove_stream);
58 // NOLINTEND
59
60public:
61 // virtual function thunks
62 // NOLINTBEGIN
63 MCNAPI uint64 $count();
64
65 MCNAPI ::webrtc::MediaStreamInterface* $at(uint64 index);
66
67 MCNAPI ::webrtc::MediaStreamInterface* $find(::std::string const& id);
68
69 MCNAPI ::webrtc::MediaStreamTrackInterface* $FindAudioTrack(::std::string const& id);
70
71 MCNAPI ::webrtc::MediaStreamTrackInterface* $FindVideoTrack(::std::string const& id);
72 // NOLINTEND
73};
74
75} // namespace webrtc
Definition MediaStreamInterface.h:18
Definition StreamCollectionInterface.h:16
Definition StreamCollection.h:17
MCAPI::webrtc::MediaStreamTrackInterface * $FindAudioTrack(::std::string const &id)
MCAPI void RemoveStream(::webrtc::MediaStreamInterface *remove_stream)
MCAPI::webrtc::MediaStreamInterface * $at(uint64 index)
MCAPI::webrtc::MediaStreamTrackInterface * $FindVideoTrack(::std::string const &id)
MCAPI void AddStream(::webrtc::scoped_refptr<::webrtc::MediaStreamInterface > stream)
MCAPI::webrtc::MediaStreamInterface * $find(::std::string const &id)
Definition scoped_refptr.h:8
Definition Alias.h:14