LeviLamina
Loading...
Searching...
No Matches
ReConfigChunk.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 { class Parameters; }
12namespace dcsctp { struct ReConfigChunkConfig; }
13// clang-format on
14
15namespace dcsctp {
16
17class ReConfigChunk : public ::dcsctp::Chunk, public ::dcsctp::TLVTrait<::dcsctp::ReConfigChunkConfig> {
18public:
19 // member variables
20 // NOLINTBEGIN
22 // NOLINTEND
23
24public:
25 // prevent constructor by default
26 ReConfigChunk& operator=(ReConfigChunk const&);
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 // vIndex: 1
34 virtual void SerializeTo(::std::vector<uchar>& out) const /*override*/;
35
36 // vIndex: 2
37 virtual ::std::string ToString() const /*override*/;
38
39 // vIndex: 0
40 virtual ~ReConfigChunk() /*override*/;
41 // NOLINTEND
42
43public:
44 // member functions
45 // NOLINTBEGIN
46 MCNAPI explicit ReConfigChunk(::dcsctp::Parameters parameters);
47 // NOLINTEND
48
49public:
50 // static functions
51 // NOLINTBEGIN
52 MCNAPI static ::std::optional<::dcsctp::ReConfigChunk> Parse(::rtc::ArrayView<uchar const> data);
53 // NOLINTEND
54
55public:
56 // constructor thunks
57 // NOLINTBEGIN
58 MCNAPI void* $ctor(::dcsctp::Parameters parameters);
59 // NOLINTEND
60
61public:
62 // destructor thunk
63 // NOLINTBEGIN
64 MCNAPI void $dtor();
65 // NOLINTEND
66
67public:
68 // virtual function thunks
69 // NOLINTBEGIN
70 MCNAPI void $SerializeTo(::std::vector<uchar>& out) const;
71
72 MCNAPI ::std::string $ToString() const;
73 // NOLINTEND
74
75public:
76 // vftables
77 // NOLINTBEGIN
78 MCNAPI static void** $vftable();
79 // NOLINTEND
80};
81
82} // namespace dcsctp
Definition Chunk.h:7
Definition Parameters.h:13
Definition ReConfigChunk.h:17
MCAPI ReConfigChunk(::dcsctp::Parameters parameters)
static MCAPI ::std::optional<::dcsctp::ReConfigChunk > Parse(::rtc::ArrayView< uchar const > data)
static MCAPI void ** $vftable()
MCAPI::std::string $ToString() const
MCAPI void $SerializeTo(::std::vector< uchar > &out) const
MCAPI void * $ctor(::dcsctp::Parameters parameters)
Definition TLVTrait.h:8
Definition _HeaderOutputPredefine.h:260
Definition Alias.h:14