LeviLamina
Loading...
Searching...
No Matches
FileReader.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/external/bx/FileReaderI.h"
7#include "mc/external/bx/Whence.h"
8
9// auto generated forward declare list
10// clang-format off
11namespace bx { class Error; }
12namespace bx { class FilePath; }
13// clang-format on
14
15namespace bx {
16
17class FileReader : public ::bx::FileReaderI {
18public:
19 // member variables
20 // NOLINTBEGIN
21 ::ll::TypedStorage<1, 64, uchar[64]> m_internal;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 virtual ~FileReader() /*override*/ = default;
28
29 virtual bool open(::bx::FilePath const&, ::bx::Error*) /*override*/;
30
31 virtual void close() /*override*/;
32
33 virtual int64 seek(int64, ::bx::Whence::Enum) /*override*/;
34
35 virtual int read(void*, int, ::bx::Error*) /*override*/;
36 // NOLINTEND
37
38public:
39 // virtual function thunks
40 // NOLINTBEGIN
41
42 // NOLINTEND
43};
44
45} // namespace bx
Definition Error.h:7
Definition FilePath.h:7
Definition FileReader.h:7