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& operator=(SsrcGroup const&);
18 SsrcGroup();
19
20public:
21 // member functions
22 // NOLINTBEGIN
24
26
27 MCNAPI SsrcGroup(::std::string const& usage, ::std::vector<uint> const& ssrcs);
28
29 MCNAPI ~SsrcGroup();
30 // NOLINTEND
31
32public:
33 // constructor thunks
34 // NOLINTBEGIN
35 MCNAPI void* $ctor(::cricket::SsrcGroup&&);
36
37 MCNAPI void* $ctor(::cricket::SsrcGroup const&);
38
39 MCNAPI void* $ctor(::std::string const& usage, ::std::vector<uint> const& ssrcs);
40 // NOLINTEND
41
42public:
43 // destructor thunk
44 // NOLINTBEGIN
45 MCNAPI void $dtor();
46 // NOLINTEND
47};
48
49} // namespace cricket
Definition SsrcGroup.h:7
MCAPI SsrcGroup(::cricket::SsrcGroup &&)
MCAPI void * $ctor(::cricket::SsrcGroup &&)
MCAPI SsrcGroup(::std::string const &usage, ::std::vector< uint > const &ssrcs)
MCAPI SsrcGroup(::cricket::SsrcGroup const &)
MCAPI void * $ctor(::cricket::SsrcGroup const &)
MCAPI void $dtor()
MCAPI void * $ctor(::std::string const &usage, ::std::vector< uint > const &ssrcs)
Definition Alias.h:14