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
28 virtual ~StringByteOutput() /*override*/;
29 // NOLINTEND
30
31public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36
37public:
38 // virtual function thunks
39 // NOLINTBEGIN
40 MCAPI void $writeBytes(void const* data, uint64 bytes);
41
42
43 // NOLINTEND
44
45public:
46 // vftables
47 // NOLINTBEGIN
48 MCNAPI static void** $vftable();
49 // NOLINTEND
50};
Definition BytesDataOutput.h:8
static MCAPI void ** $vftable()