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/cricket/StunAttribute.h"
7#include "mc/external/cricket/StunAttributeValueType.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace rtc { class ByteBufferReader; }
12namespace rtc { class ByteBufferWriter; }
13// clang-format on
14
15namespace cricket {
16
17class StunUInt16ListAttribute : public ::cricket::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 ::cricket::StunAttributeValueType value_type() const /*override*/;
36
37 virtual bool Read(::rtc::ByteBufferReader* buf) /*override*/;
38
39 virtual bool Write(::rtc::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 ::cricket::StunAttributeValueType $value_type() const;
66
67 MCNAPI bool $Read(::rtc::ByteBufferReader* buf);
68
69 MCNAPI bool $Write(::rtc::ByteBufferWriter* buf) const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace cricket
Definition StunAttribute.h:20
MCAPI void AddTypeAtIndex(ushort index, ushort value)
MCAPI void * $ctor(ushort type, ushort length)
MCAPI StunUInt16ListAttribute(ushort type, ushort length)
MCAPI ushort GetType(int index) const
MCAPI::cricket::StunAttributeValueType $value_type() const
MCAPI void AddType(ushort value)
MCAPI bool $Read(::rtc::ByteBufferReader *buf)
MCAPI bool $Write(::rtc::ByteBufferWriter *buf) const
static MCAPI void ** $vftable()
Definition ByteBufferReader.h:12
Definition ByteBufferWriter.h:11
Definition Alias.h:14