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&);
27 ReConfigChunk(ReConfigChunk const&);
28 ReConfigChunk();
29
30public:
31 // virtual functions
32 // NOLINTBEGIN
33 virtual void SerializeTo(::std::vector<uchar>& out) const /*override*/;
34
35 virtual ::std::string ToString() const /*override*/;
36
37 virtual ~ReConfigChunk() /*override*/;
38 // NOLINTEND
39
40public:
41 // member functions
42 // NOLINTBEGIN
43 MCNAPI explicit ReConfigChunk(::dcsctp::Parameters parameters);
44 // NOLINTEND
45
46public:
47 // static functions
48 // NOLINTBEGIN
49 MCNAPI static ::std::optional<::dcsctp::ReConfigChunk> Parse(::rtc::ArrayView<uchar const> data);
50 // NOLINTEND
51
52public:
53 // constructor thunks
54 // NOLINTBEGIN
55 MCNAPI void* $ctor(::dcsctp::Parameters parameters);
56 // NOLINTEND
57
58public:
59 // destructor thunk
60 // NOLINTBEGIN
61 MCNAPI void $dtor();
62 // NOLINTEND
63
64public:
65 // virtual function thunks
66 // NOLINTBEGIN
67 MCNAPI void $SerializeTo(::std::vector<uchar>& out) const;
68
69 MCNAPI ::std::string $ToString() const;
70
71
72 // NOLINTEND
73
74public:
75 // vftables
76 // NOLINTBEGIN
77 MCNAPI static void** $vftable();
78 // NOLINTEND
79};
80
81} // namespace dcsctp
Definition Chunk.h:7
Definition Parameters.h:13
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:310
Definition ReConfigChunkConfig.h:7
Definition Alias.h:14