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
17class StunUInt64Attribute : public ::cricket::StunAttribute {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 StunUInt64Attribute& operator=(StunUInt64Attribute const&);
27 StunUInt64Attribute(StunUInt64Attribute const&);
28 StunUInt64Attribute();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ::cricket::StunAttributeValueType value_type() const /*override*/;
34
35 virtual bool Read(::rtc::ByteBufferReader* buf) /*override*/;
36
37 virtual bool Write(::rtc::ByteBufferWriter* buf) const /*override*/;
38
39 virtual ~StunUInt64Attribute() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // member functions
44 // NOLINTBEGIN
45 MCNAPI StunUInt64Attribute(ushort type, uint64 value);
46 // NOLINTEND
47
48public:
49 // constructor thunks
50 // NOLINTBEGIN
51 MCNAPI void* $ctor(ushort type, uint64 value);
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCNAPI ::cricket::StunAttributeValueType $value_type() const;
58
59 MCNAPI bool $Read(::rtc::ByteBufferReader* buf);
60
61 MCNAPI bool $Write(::rtc::ByteBufferWriter* buf) const;
62
63
64 // NOLINTEND
65
66public:
67 // vftables
68 // NOLINTBEGIN
69 MCNAPI static void** $vftable();
70 // NOLINTEND
71};
72
73} // namespace cricket
Definition StunAttribute.h:20
MCAPI StunUInt64Attribute(ushort type, uint64 value)
MCAPI bool $Write(::rtc::ByteBufferWriter *buf) const
MCAPI::cricket::StunAttributeValueType $value_type() const
MCAPI void * $ctor(ushort type, uint64 value)
static MCAPI void ** $vftable()
MCAPI bool $Read(::rtc::ByteBufferReader *buf)
Definition ByteBufferReader.h:12
Definition ByteBufferWriter.h:11
Definition Alias.h:14