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