LeviLamina
Loading...
Searching...
No Matches
FlushingIOController.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated forward declare list
6// clang-format off
7namespace Core { class Result; }
8// clang-format on
9
10namespace Bedrock {
11
13public:
14 // FlushingIOController inner types declare
15 // clang-format off
16 class Flusher;
17 // clang-format on
18
19 // FlushingIOController inner types define
20 class Flusher {
21 public:
22 // virtual functions
23 // NOLINTBEGIN
24 // vIndex: 0
25 virtual ~Flusher();
26
27 // vIndex: 1
28 virtual ::Core::Result _flushBuffer(void const*, uint64) = 0;
29 // NOLINTEND
30
31 public:
32 // destructor thunk
33 // NOLINTBEGIN
34 MCFOLD void $dtor();
35 // NOLINTEND
36
37 public:
38 // virtual function thunks
39 // NOLINTBEGIN
40
41 // NOLINTEND
42
43 public:
44 // vftables
45 // NOLINTBEGIN
46 MCAPI static void** $vftable();
47 // NOLINTEND
48 };
49
50public:
51 // member variables
52 // NOLINTBEGIN
57 // NOLINTEND
58
59public:
60 // prevent constructor by default
64
65public:
66 // member functions
67 // NOLINTBEGIN
68 MCAPI ::Core::Result write(void const* data, uint64 byteCount);
69 // NOLINTEND
70};
71
72} // namespace Bedrock
Definition FlushingIOController.h:20
Definition FlushingIOController.h:12
Definition Result.h:6
Definition Alias.h:14