LeviLamina
Loading...
Searching...
No Matches
ReportBlock.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5namespace webrtc::rtcp {
6
8public:
9 // member variables
10 // NOLINTBEGIN
18 // NOLINTEND
19
20public:
21 // prevent constructor by default
22 ReportBlock& operator=(ReportBlock const&);
24
25public:
26 // member functions
27 // NOLINTBEGIN
28 MCAPI void Create(uchar*) const;
29
30 MCAPI bool Parse(uchar const*, uint64);
31
32 MCAPI ReportBlock();
33 // NOLINTEND
34
35public:
36 // constructor thunks
37 // NOLINTBEGIN
38 MCAPI void* $ctor();
39 // NOLINTEND
40};
41
42} // namespace webrtc::rtcp
Definition ReportBlock.h:7
Definition Alias.h:14