LeviLamina
Loading...
Searching...
No Matches
SimulcastLayer.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace cricket {
6
8public:
9 // member variables
10 // NOLINTBEGIN
13 // NOLINTEND
14
15public:
16 // prevent constructor by default
17 SimulcastLayer& operator=(SimulcastLayer const&);
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
25 MCAPI SimulcastLayer(::std::string_view, bool);
26
27 MCAPI ~SimulcastLayer();
28 // NOLINTEND
29
30public:
31 // constructor thunks
32 // NOLINTBEGIN
33 MCAPI void* $ctor(::cricket::SimulcastLayer const&);
34
35 MCAPI void* $ctor(::std::string_view, bool);
36 // NOLINTEND
37
38public:
39 // destructor thunk
40 // NOLINTBEGIN
41 MCAPI void $dtor();
42 // NOLINTEND
43};
44
45} // namespace cricket
Definition SimulcastLayer.h:7
Definition Alias.h:14