LeviLamina
Loading...
Searching...
No Matches
App.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 App : public ::webrtc::rtcp::RtcpPacket {
17public:
18 // member variables
19 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
27 App& operator=(App const&);
28 App(App const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~App() /*override*/;
34
35 virtual uint64 BlockLength() const /*override*/;
36
37 virtual bool Create(
38 uchar* packet,
39 uint64* index,
40 uint64 max_length,
42 ) const /*override*/;
43 // NOLINTEND
44
45public:
46 // member functions
47 // NOLINTBEGIN
48 MCNAPI App();
49
50 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
51 // NOLINTEND
52
53public:
54 // constructor thunks
55 // NOLINTBEGIN
56 MCNAPI void* $ctor();
57 // NOLINTEND
58
59public:
60 // destructor thunk
61 // NOLINTBEGIN
62 MCNAPI void $dtor();
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI uint64 $BlockLength() const;
69
70 MCNAPI bool $Create(
71 uchar* packet,
72 uint64* index,
73 uint64 max_length,
75 ) const;
76
77
78 // NOLINTEND
79
80public:
81 // vftables
82 // NOLINTBEGIN
83 MCNAPI static void** $vftable();
84 // NOLINTEND
85};
86
87} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:310
Definition FunctionView.h:8
MCAPI void * $ctor()
MCAPI uint64 $BlockLength() const
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)
static MCAPI void ** $vftable()
Definition CommonHeader.h:7
Definition RtcpPacket.h:10
Definition Alias.h:14