LeviLamina
Loading...
Searching...
No Matches
CodecList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/RTCErrorOr.h"
7
8// auto generated forward declare list
9// clang-format off
10namespace webrtc { struct Codec; }
11// clang-format on
12
13namespace webrtc {
14
15class CodecList {
16public:
17 // member variables
18 // NOLINTBEGIN
20 // NOLINTEND
21
22public:
23 // prevent constructor by default
24 CodecList& operator=(CodecList const&);
25 CodecList(CodecList const&);
26 CodecList();
27
28public:
29 // member functions
30 // NOLINTBEGIN
31 MCNAPI void CheckConsistency();
32
33 MCNAPI ::webrtc::CodecList& operator=(::webrtc::CodecList&&);
34
35 MCNAPI ~CodecList();
36 // NOLINTEND
37
38public:
39 // static functions
40 // NOLINTBEGIN
41 MCNAPI static ::webrtc::RTCErrorOr<::webrtc::CodecList> Create(::std::vector<::webrtc::Codec> const& codecs);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCNAPI void $dtor();
48 // NOLINTEND
49};
50
51} // namespace webrtc
Definition CodecList.h:15
MCAPI::webrtc::CodecList & operator=(::webrtc::CodecList &&)
MCAPI void $dtor()
MCAPI void CheckConsistency()
static MCAPI ::webrtc::RTCErrorOr<::webrtc::CodecList > Create(::std::vector<::webrtc::Codec > const &codecs)
Definition Alias.h:14
Definition Codec.h:13