LeviLamina
Loading...
Searching...
No Matches
StringByteOutput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/util/BytesDataOutput.h"
7
9public:
10 // member variables
11 // NOLINTBEGIN
12 std::string& mBuffer;
13 // NOLINTEND
14
15 StringByteOutput(std::string& str) noexcept : mBuffer(str) {}
16
17public:
18 // virtual functions
19 // NOLINTBEGIN
20 // vIndex: 9
21 virtual void writeBytes(void const* data, uint64 bytes) /*override*/;
22
23 // vIndex: 0
24 virtual ~StringByteOutput() /*override*/;
25 // NOLINTEND
26
27public:
28 // destructor thunk
29 // NOLINTBEGIN
30 MCFOLD void $dtor();
31 // NOLINTEND
32
33public:
34 // virtual function thunks
35 // NOLINTBEGIN
36 MCAPI void $writeBytes(void const* data, uint64 bytes);
37 // NOLINTEND
38
39public:
40 // vftables
41 // NOLINTBEGIN
42 MCAPI static void** $vftable();
43 // NOLINTEND
44};
Definition BytesDataOutput.h:8
Definition StringByteOutput.h:8