LeviLamina
Loading...
Searching...
No Matches
Bye.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/rtc/FunctionView.h"
7#include "mc/external/webrtc/RtcpPacket.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc::rtcp { class CommonHeader; }
12// clang-format on
13
14namespace webrtc::rtcp {
15
16class Bye : public ::webrtc::rtcp::RtcpPacket {
17public:
18 // member variables
19 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 Bye& operator=(Bye const&);
27 Bye(Bye const&);
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 virtual ~Bye() /*override*/;
33
34 virtual uint64 BlockLength() const /*override*/;
35
36 virtual bool Create(
37 uchar* packet,
38 uint64* index,
39 uint64 max_length,
41 ) const /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCNAPI Bye();
48
49 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
50
51 MCNAPI bool SetCsrcs(::std::vector<uint> csrcs);
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor();
58 // NOLINTEND
59
60public:
61 // destructor thunk
62 // NOLINTBEGIN
63 MCNAPI void $dtor();
64 // NOLINTEND
65
66public:
67 // virtual function thunks
68 // NOLINTBEGIN
69 MCNAPI uint64 $BlockLength() const;
70
71 MCNAPI bool $Create(
72 uchar* packet,
73 uint64* index,
74 uint64 max_length,
76 ) const;
77
78
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
87
88} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:309
Definition FunctionView.h:8
MCAPI void $dtor()
MCAPI bool $Create(uchar *packet, uint64 *index, uint64 max_length, ::rtc::FunctionView< void(::rtc::ArrayView< uchar const >)> callback) const
MCAPI bool Parse(::webrtc::rtcp::CommonHeader const &packet)
MCAPI void * $ctor()
static MCAPI void ** $vftable()
MCAPI bool SetCsrcs(::std::vector< uint > csrcs)
MCAPI uint64 $BlockLength() const
Definition CommonHeader.h:7
Definition RtcpPacket.h:10
Definition Alias.h:14