LeviLamina
Loading...
Searching...
No Matches
StunAddressAttribute.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; }
13namespace rtc { class SocketAddress; }
14// clang-format on
15
16namespace cricket {
17
19public:
20 // member variables
21 // NOLINTBEGIN
23 // NOLINTEND
24
25public:
26 // prevent constructor by default
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 1
35 virtual ::cricket::StunAttributeValueType value_type() const /*override*/;
36
37 // vIndex: 3
38 virtual bool Read(::rtc::ByteBufferReader* buf) /*override*/;
39
40 // vIndex: 4
41 virtual bool Write(::rtc::ByteBufferWriter* buf) const /*override*/;
42
43 // vIndex: 0
44 virtual ~StunAddressAttribute() /*override*/ = default;
45 // NOLINTEND
46
47public:
48 // member functions
49 // NOLINTBEGIN
50 MCNAPI void SetAddress(::rtc::SocketAddress const& addr);
51
52 MCNAPI StunAddressAttribute(ushort type, ::rtc::SocketAddress const& addr);
53
54 MCNAPI StunAddressAttribute(ushort type, ushort length);
55 // NOLINTEND
56
57public:
58 // constructor thunks
59 // NOLINTBEGIN
60 MCNAPI void* $ctor(ushort type, ::rtc::SocketAddress const& addr);
61
62 MCNAPI void* $ctor(ushort type, ushort length);
63 // NOLINTEND
64
65public:
66 // virtual function thunks
67 // NOLINTBEGIN
68 MCNAPI ::cricket::StunAttributeValueType $value_type() const;
69
70 MCNAPI bool $Read(::rtc::ByteBufferReader* buf);
71
72 MCNAPI bool $Write(::rtc::ByteBufferWriter* buf) const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
81
82} // namespace cricket
Definition StunAddressAttribute.h:18
MCAPI bool $Read(::rtc::ByteBufferReader *buf)
MCAPI void * $ctor(ushort type, ushort length)
static MCAPI void ** $vftable()
MCAPI void SetAddress(::rtc::SocketAddress const &addr)
MCAPI void * $ctor(ushort type, ::rtc::SocketAddress const &addr)
MCAPI StunAddressAttribute(ushort type, ushort length)
MCAPI::cricket::StunAttributeValueType $value_type() const
MCAPI StunAddressAttribute(ushort type, ::rtc::SocketAddress const &addr)
MCAPI bool $Write(::rtc::ByteBufferWriter *buf) const
Definition StunAttribute.h:20
Definition ByteBufferReader.h:12
Definition ByteBufferWriter.h:11
Definition SocketAddress.h:12
Definition Read.h:6
Definition Write.h:6
Definition Alias.h:14