LeviLamina
Loading...
Searching...
No Matches
ShutdownCompleteChunk.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/dcsctp/Chunk.h"
7#include "mc/external/dcsctp/TLVTrait.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace dcsctp { struct ShutdownCompleteChunkConfig; }
12// clang-format on
13
14namespace dcsctp {
15
16class ShutdownCompleteChunk : public ::dcsctp::Chunk, public ::dcsctp::TLVTrait<::dcsctp::ShutdownCompleteChunkConfig> {
17public:
18 // member variables
19 // NOLINTBEGIN
21 // NOLINTEND
22
23public:
24 // prevent constructor by default
28
29public:
30 // virtual functions
31 // NOLINTBEGIN
32 // vIndex: 1
33 virtual void SerializeTo(::std::vector<uchar>& out) const /*override*/;
34
35 // vIndex: 2
36 virtual ::std::string ToString() const /*override*/;
37
38 // vIndex: 0
39 virtual ~ShutdownCompleteChunk() /*override*/ = default;
40 // NOLINTEND
41
42public:
43 // static functions
44 // NOLINTBEGIN
45 MCNAPI static ::std::optional<::dcsctp::ShutdownCompleteChunk> Parse(::rtc::ArrayView<uchar const> data);
46 // NOLINTEND
47
48public:
49 // virtual function thunks
50 // NOLINTBEGIN
51 MCNAPI void $SerializeTo(::std::vector<uchar>& out) const;
52
53 MCNAPI ::std::string $ToString() const;
54 // NOLINTEND
55
56public:
57 // vftables
58 // NOLINTBEGIN
59 MCNAPI static void** $vftable();
60 // NOLINTEND
61};
62
63} // namespace dcsctp
Definition Chunk.h:7
Definition ShutdownCompleteChunk.h:16
MCAPI void $SerializeTo(::std::vector< uchar > &out) const
MCAPI::std::string $ToString() const
static MCAPI ::std::optional<::dcsctp::ShutdownCompleteChunk > Parse(::rtc::ArrayView< uchar const > data)
static MCAPI void ** $vftable()
Definition TLVTrait.h:8
Definition _HeaderOutputPredefine.h:260
Definition Alias.h:14