mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-07-22 12:45:44 +00:00
Service.FS: Rename FileSys::File to FileBackend
This commit is contained in:
parent
d51afab0bc
commit
0931a42af0
10 changed files with 17 additions and 17 deletions
|
@ -10,7 +10,7 @@
|
|||
#include "common/string_util.h"
|
||||
#include "common/bit_field.h"
|
||||
|
||||
#include "core/file_sys/file.h"
|
||||
#include "core/file_sys/file_backend.h"
|
||||
#include "core/file_sys/directory_backend.h"
|
||||
|
||||
#include "core/mem_map.h"
|
||||
|
@ -175,7 +175,7 @@ public:
|
|||
* @param mode Mode to open the file with
|
||||
* @return Opened file, or nullptr
|
||||
*/
|
||||
virtual std::unique_ptr<File> OpenFile(const Path& path, const Mode mode) const = 0;
|
||||
virtual std::unique_ptr<FileBackend> OpenFile(const Path& path, const Mode mode) const = 0;
|
||||
|
||||
/**
|
||||
* Delete a file specified by its path
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue