LeviLamina
Loading...
Searching...
No Matches
StunByteStringAttribute.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 StunByteStringAttribute : public ::cricket::StunAttribute {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 StunByteStringAttribute& operator=(StunByteStringAttribute const&);
27 StunByteStringAttribute(StunByteStringAttribute const&);
28 StunByteStringAttribute();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual ~StunByteStringAttribute() /*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 explicit StunByteStringAttribute(ushort type);
46
47 MCNAPI StunByteStringAttribute(ushort type, ::std::string_view str);
48
49 MCNAPI StunByteStringAttribute(ushort type, void const* bytes, uint64 length);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(ushort type);
56
57 MCNAPI void* $ctor(ushort type, ::std::string_view str);
58
59 MCNAPI void* $ctor(ushort type, void const* bytes, uint64 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 StunByteStringAttribute(ushort type, ::std::string_view str)
MCAPI void * $ctor(ushort type, void const *bytes, uint64 length)
MCAPI void * $ctor(ushort type, ::std::string_view str)
MCAPI bool $Write(::rtc::ByteBufferWriter *buf) const
static MCAPI void ** $vftable()
MCAPI bool $Read(::rtc::ByteBufferReader *buf)
MCAPI StunByteStringAttribute(ushort type, void const *bytes, uint64 length)
MCAPI::cricket::StunAttributeValueType $value_type() const
MCAPI void * $ctor(ushort type)
MCAPI StunByteStringAttribute(ushort type)
Definition ByteBufferReader.h:12
Definition ByteBufferWriter.h:11
Definition Alias.h:14