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