LeviLamina
Loading...
Searching...
No Matches
IFileAccess.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/utility/EnableNonOwnerReferences.h"
7
8// auto generated forward declare list
9// clang-format off
10class IFileReadAccess;
12namespace Core { class PathView; }
13// clang-format on
14
16public:
17 // virtual functions
18 // NOLINTBEGIN
19 // vIndex: 0
20 virtual ~IFileAccess() /*override*/;
21
22 // vIndex: 1
23 virtual void* fopen(::Core::PathView, ::std::string const&) = 0;
24
25 // vIndex: 2
26 virtual int fclose(void*) = 0;
27
28 // vIndex: 3
29 virtual int fseek(void*, int64, int) = 0;
30
31 // vIndex: 4
32 virtual int64 ftell(void*) = 0;
33
34 // vIndex: 5
35 virtual ::IFileReadAccess const* getReadInterface() const = 0;
36
37 // vIndex: 6
38 virtual ::IFileWriteAccess* getWriteInterface() = 0;
39
40 // vIndex: 7
41 virtual void unload() = 0;
42 // NOLINTEND
43
44public:
45 // destructor thunk
46 // NOLINTBEGIN
47 MCFOLD void $dtor();
48 // NOLINTEND
49
50public:
51 // virtual function thunks
52 // NOLINTBEGIN
53
54 // NOLINTEND
55};
Definition EnableNonOwnerReferences.h:7
Definition PathView.h:16
Definition IFileAccess.h:15
Definition IFileReadAccess.h:5
Definition IFileWriteAccess.h:5