LeviLamina
Loading...
Searching...
No Matches
SimulcastLayerList.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace cricket { struct SimulcastLayer; }
8// clang-format on
9
10namespace cricket {
11
13public:
14 // member variables
15 // NOLINTBEGIN
17 // NOLINTEND
18
19public:
20 // prevent constructor by default
21 SimulcastLayerList& operator=(SimulcastLayerList const&);
23
24public:
25 // member functions
26 // NOLINTBEGIN
27 MCAPI void AddLayer(::cricket::SimulcastLayer const&);
28
29 MCAPI void AddLayerWithAlternatives(::std::vector<::cricket::SimulcastLayer> const&);
30
31 MCAPI ::std::vector<::cricket::SimulcastLayer> GetAllLayers() const;
32
34
35 MCAPI ::cricket::SimulcastLayerList& operator=(::cricket::SimulcastLayerList&&);
36
37 MCAPI ~SimulcastLayerList();
38 // NOLINTEND
39
40public:
41 // constructor thunks
42 // NOLINTBEGIN
43 MCAPI void* $ctor(::cricket::SimulcastLayerList const&);
44 // NOLINTEND
45
46public:
47 // destructor thunk
48 // NOLINTBEGIN
49 MCAPI void $dtor();
50 // NOLINTEND
51};
52
53} // namespace cricket
Definition SimulcastLayerList.h:12
Definition SimulcastLayer.h:7
Definition Alias.h:14