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
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 // vIndex: 0
34 virtual ~App() /*override*/;
35
36 // vIndex: 1
37 virtual uint64 BlockLength() const /*override*/;
38
39 // vIndex: 2
40 virtual bool Create(
41 uchar* packet,
42 uint64* index,
43 uint64 max_length,
45 ) const /*override*/;
46 // NOLINTEND
47
48public:
49 // member functions
50 // NOLINTBEGIN
51 MCNAPI App();
52
53 MCNAPI bool Parse(::webrtc::rtcp::CommonHeader const& packet);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor();
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCNAPI void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCNAPI uint64 $BlockLength() const;
72
73 MCNAPI bool $Create(
74 uchar* packet,
75 uint64* index,
76 uint64 max_length,
78 ) const;
79 // NOLINTEND
80
81public:
82 // vftables
83 // NOLINTBEGIN
84 MCNAPI static void** $vftable();
85 // NOLINTEND
86};
87
88} // namespace webrtc::rtcp
Definition _HeaderOutputPredefine.h:260
Definition FunctionView.h:8
Definition App.h:16
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