LeviLamina
Loading...
Searching...
No Matches
StunUInt64Attribute.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
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual ::cricket::StunAttributeValueType value_type() const /*override*/;
35
36 // vIndex: 3
37 virtual bool Read(::rtc::ByteBufferReader* buf) /*override*/;
38
39 // vIndex: 4
40 virtual bool Write(::rtc::ByteBufferWriter* buf) const /*override*/;
41
42 // vIndex: 0
43 virtual ~StunUInt64Attribute() /*override*/ = default;
44 // NOLINTEND
45
46public:
47 // member functions
48 // NOLINTBEGIN
49 MCNAPI explicit StunUInt64Attribute(ushort type);
50
51 MCNAPI StunUInt64Attribute(ushort type, uint64 value);
52 // NOLINTEND
53
54public:
55 // constructor thunks
56 // NOLINTBEGIN
57 MCNAPI void* $ctor(ushort type);
58
59 MCNAPI void* $ctor(ushort type, uint64 value);
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 // NOLINTEND
71
72public:
73 // vftables
74 // NOLINTBEGIN
75 MCNAPI static void** $vftable();
76 // NOLINTEND
77};
78
79} // namespace cricket
Definition StunAttribute.h:20
Definition StunUInt64Attribute.h:17
MCAPI StunUInt64Attribute(ushort type, uint64 value)
MCAPI bool $Write(::rtc::ByteBufferWriter *buf) const
MCAPI::cricket::StunAttributeValueType $value_type() const
MCAPI StunUInt64Attribute(ushort type)
MCAPI void * $ctor(ushort type, uint64 value)
static MCAPI void ** $vftable()
MCAPI void * $ctor(ushort type)
MCAPI bool $Read(::rtc::ByteBufferReader *buf)
Definition ByteBufferReader.h:12
Definition ByteBufferWriter.h:11
Definition Read.h:6
Definition Write.h:6
Definition Alias.h:14