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