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