LeviLamina
Loading...
Searching...
No Matches
StringByteInput.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/platform/Result.h"
7#include "mc/util/BytesDataInput.h"
8
10public:
11 // member variables
12 // NOLINTBEGIN
13 size_t mIdx;
14 std::string_view mBuffer;
15 // NOLINTEND
16
17 StringByteInput(std::string_view sv, size_t offset) noexcept : mIdx(offset), mBuffer(sv) {}
18
19public:
20 // virtual functions
21 // NOLINTBEGIN
22 // vIndex: 9
23 virtual ::Bedrock::Result<void> readBytesResult(void* data, uint64 bytes) /*override*/;
24
25 // vIndex: 10
26 virtual uint64 numBytesLeft() const /*override*/;
27
28 // vIndex: 0
29 virtual ~StringByteInput() /*override*/;
30 // NOLINTEND
31
32public:
33 // member functions
34 // NOLINTBEGIN
35 MCAPI explicit StringByteInput(::std::string_view in);
36 // NOLINTEND
37
38public:
39 // constructor thunks
40 // NOLINTBEGIN
41 MCAPI void* $ctor(::std::string_view in);
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53 MCAPI ::Bedrock::Result<void> $readBytesResult(void* data, uint64 bytes);
54
55 MCAPI uint64 $numBytesLeft() const;
56 // NOLINTEND
57
58public:
59 // vftables
60 // NOLINTBEGIN
61 MCAPI static void** $vftable();
62 // NOLINTEND
63};
Definition BytesDataInput.h:9
Definition StringByteInput.h:9