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 virtual ~IFileAccess() /*override*/;
20
21 virtual void* fopen(::Core::PathView, ::std::string const&) = 0;
22
23 virtual int fclose(void*) = 0;
24
25 virtual int fseek(void*, int64, int) = 0;
26
27 virtual int64 ftell(void*) = 0;
28
29 virtual ::IFileReadAccess const* getReadInterface() const = 0;
30
31 virtual ::IFileWriteAccess* getWriteInterface() = 0;
32
33 virtual void unload() = 0;
34 // NOLINTEND
35
36public:
37 // destructor thunk
38 // NOLINTBEGIN
39 MCNAPI void $dtor();
40 // NOLINTEND
41
42public:
43 // virtual function thunks
44 // NOLINTBEGIN
45
46 // NOLINTEND
47};
Definition EnableNonOwnerReferences.h:7
Definition PathView.h:17
Definition IFileAccess.h:15
MCAPI void $dtor()
Definition IFileReadAccess.h:5
Definition IFileWriteAccess.h:5