LeviLamina
Loading...
Searching...
No Matches
StunUInt16ListAttribute.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/webrtc/StunAttribute.h"
7#include "mc/external/webrtc/StunAttributeValueType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace webrtc { class ByteBufferReader; }
12namespace webrtc { class ByteBufferWriter; }
13// clang-format on
14
15namespace webrtc {
16
17class StunUInt16ListAttribute : public ::webrtc::StunAttribute {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 StunUInt16ListAttribute& operator=(StunUInt16ListAttribute const&);
27 StunUInt16ListAttribute(StunUInt16ListAttribute const&);
28 StunUInt16ListAttribute();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~StunUInt16ListAttribute() /*override*/ = default;
34
35 virtual ::webrtc::StunAttributeValueType value_type() const /*override*/;
36
37 virtual bool Read(::webrtc::ByteBufferReader* buf) /*override*/;
38
39 virtual bool Write(::webrtc::ByteBufferWriter* buf) const /*override*/;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI void AddType(ushort value);
46
47 MCNAPI void AddTypeAtIndex(ushort index, ushort value);
48
49 MCNAPI ushort GetType(int index) const;
50
51 MCNAPI uint64 Size() const;
52
53 MCNAPI StunUInt16ListAttribute(ushort type, ushort length);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor(ushort type, ushort length);
60 // NOLINTEND
61
62public:
63 // virtual function thunks
64 // NOLINTBEGIN
65 MCNAPI ::webrtc::StunAttributeValueType $value_type() const;
66
68
69 MCNAPI bool $Write(::webrtc::ByteBufferWriter* buf) const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace webrtc
Definition ByteBufferReader.h:15
Definition ByteBufferWriter.h:11
Definition StunAttribute.h:20
MCAPI uint64 Size() const
MCAPI void AddType(ushort value)
MCAPI void * $ctor(ushort type, ushort length)
MCAPI bool $Write(::webrtc::ByteBufferWriter *buf) const
MCAPI StunUInt16ListAttribute(ushort type, ushort length)
MCAPI bool $Read(::webrtc::ByteBufferReader *buf)
MCAPI ushort GetType(int index) const
static MCAPI void ** $vftable()
MCAPI void AddTypeAtIndex(ushort index, ushort value)
MCAPI::webrtc::StunAttributeValueType $value_type() const
Definition Alias.h:14