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 // prevent constructor by default
22
23public:
24 // virtual functions
25 // NOLINTBEGIN
26 // vIndex: 9
27 virtual ::Bedrock::Result<void> readBytesResult(void* data, uint64 bytes) /*override*/;
28
29 // vIndex: 10
30 virtual uint64 numBytesLeft() const /*override*/;
31
32 // vIndex: 0
33 virtual ~StringByteInput() /*override*/;
34 // NOLINTEND
35
36public:
37 // member functions
38 // NOLINTBEGIN
39 MCAPI explicit StringByteInput(::std::string_view in);
40 // NOLINTEND
41
42public:
43 // constructor thunks
44 // NOLINTBEGIN
45 MCAPI void* $ctor(::std::string_view in);
46 // NOLINTEND
47
48public:
49 // destructor thunk
50 // NOLINTBEGIN
51 MCFOLD void $dtor();
52 // NOLINTEND
53
54public:
55 // virtual function thunks
56 // NOLINTBEGIN
57 MCAPI ::Bedrock::Result<void> $readBytesResult(void* data, uint64 bytes);
58
59 MCAPI uint64 $numBytesLeft() const;
60 // NOLINTEND
61
62public:
63 // vftables
64 // NOLINTBEGIN
65 MCNAPI static void** $vftable();
66 // NOLINTEND
67};
Definition BytesDataInput.h:9
Definition StringByteInput.h:9
static MCAPI void ** $vftable()