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 // vIndex: 1
35 virtual void SerializeTo(::std::vector<uchar>& out) const /*override*/;
36
37 // vIndex: 2
38 virtual ::std::string ToString() const /*override*/;
39
40 // vIndex: 0
41 virtual ~AbortChunk() /*override*/;
42 // NOLINTEND
43
44public:
45 // member functions
46 // NOLINTBEGIN
47 MCNAPI AbortChunk(bool filled_in_verification_tag, ::dcsctp::Parameters error_causes);
48 // NOLINTEND
49
50public:
51 // static functions
52 // NOLINTBEGIN
53 MCNAPI static ::std::optional<::dcsctp::AbortChunk> Parse(::rtc::ArrayView<uchar const> data);
54 // NOLINTEND
55
56public:
57 // constructor thunks
58 // NOLINTBEGIN
59 MCNAPI void* $ctor(bool filled_in_verification_tag, ::dcsctp::Parameters error_causes);
60 // NOLINTEND
61
62public:
63 // destructor thunk
64 // NOLINTBEGIN
65 MCNAPI void $dtor();
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCNAPI void $SerializeTo(::std::vector<uchar>& out) const;
72
73 MCNAPI ::std::string $ToString() const;
74 // NOLINTEND
75
76public:
77 // vftables
78 // NOLINTBEGIN
79 MCNAPI static void** $vftable();
80 // NOLINTEND
81};
82
83} // namespace dcsctp
Definition AbortChunk.h:17
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:260
Definition Alias.h:14