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