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
8class StringByteOutput : public ::BytesDataOutput {
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&);
20 StringByteOutput(StringByteOutput const&);
21 StringByteOutput();
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 virtual void writeBytes(void const* data, uint64 bytes) /*override*/;
27 // NOLINTEND
28
29public:
30 // virtual function thunks
31 // NOLINTBEGIN
32 MCAPI void $writeBytes(void const* data, uint64 bytes);
33
34
35 // NOLINTEND
36
37public:
38 // vftables
39 // NOLINTBEGIN
40 MCNAPI static void** $vftable();
41 // NOLINTEND
42};
Definition BytesDataOutput.h:8
static MCAPI void ** $vftable()