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 // prevent constructor by default
19 StringByteOutput& operator=(StringByteOutput const&);
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 9
27 virtual void writeBytes(void const* data, uint64 bytes) /*override*/;
28
29 // vIndex: 0
30 virtual ~StringByteOutput() /*override*/;
31 // NOLINTEND
32
33public:
34 // destructor thunk
35 // NOLINTBEGIN
36 MCFOLD void $dtor();
37 // NOLINTEND
38
39public:
40 // virtual function thunks
41 // NOLINTBEGIN
42 MCAPI void $writeBytes(void const* data, uint64 bytes);
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
Definition BytesDataOutput.h:8
Definition StringByteOutput.h:8
static MCAPI void ** $vftable()