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