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