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