LeviLamina
Loading...
Searching...
No Matches
RakDataInput.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
9// auto generated forward declare list
10// clang-format off
11namespace RakNet { class BitStream; }
12// clang-format on
13
14class RakDataInput : public ::BytesDataInput {
15public:
16 // member variables
17 // NOLINTBEGIN
18 ::ll::TypedStorage<8, 8, ::RakNet::BitStream&> mBitStream;
19 // NOLINTEND
20
21public:
22 // prevent constructor by default
23 RakDataInput& operator=(RakDataInput const&);
24 RakDataInput(RakDataInput const&);
25 RakDataInput();
26
27public:
28 // virtual functions
29 // NOLINTBEGIN
30 virtual ::Bedrock::Result<void> readBytesResult(void* data, uint64 bytes) /*override*/;
31
32 virtual uint64 numBytesLeft() const /*override*/;
33
34 virtual ~RakDataInput() /*override*/;
35 // NOLINTEND
36
37public:
38 // destructor thunk
39 // NOLINTBEGIN
40 MCNAPI void $dtor();
41 // NOLINTEND
42
43public:
44 // virtual function thunks
45 // NOLINTBEGIN
46 MCNAPI ::Bedrock::Result<void> $readBytesResult(void* data, uint64 bytes);
47
48 MCNAPI uint64 $numBytesLeft() const;
49
50
51 // NOLINTEND
52
53public:
54 // vftables
55 // NOLINTBEGIN
56 MCNAPI static void** $vftable();
57 // NOLINTEND
58};
Definition BytesDataInput.h:9
MCAPI ::Bedrock::Result< void > $readBytesResult(void *data, uint64 bytes)
static MCAPI void ** $vftable()
MCAPI void $dtor()
MCAPI uint64 $numBytesLeft() const
Definition BitStream.h:7