diff options
| author | 2018-04-24 08:57:46 -0400 | |
|---|---|---|
| committer | 2018-04-24 08:57:46 -0400 | |
| commit | 74951426886a9ae47873a1ea2af791ba273e06dd (patch) | |
| tree | 99ba0561c6fe429169a40e76a70db7b3f99a71ee /src/core/file_sys/filesystem.h | |
| parent | Merge pull request #379 from Subv/multi_buffers (diff) | |
| parent | Service/FS: implement IFileSystem::RenameFile (diff) | |
| download | yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.gz yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.tar.xz yuzu-74951426886a9ae47873a1ea2af791ba273e06dd.zip | |
Merge pull request #389 from mailwl/fs-renamefile
Service/FS: implement IFileSystem::RenameFile
Diffstat (limited to 'src/core/file_sys/filesystem.h')
| -rw-r--r-- | src/core/file_sys/filesystem.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/file_sys/filesystem.h b/src/core/file_sys/filesystem.h index beefcfdb2..295a3133e 100644 --- a/src/core/file_sys/filesystem.h +++ b/src/core/file_sys/filesystem.h | |||
| @@ -126,7 +126,8 @@ public: | |||
| 126 | * @param dest_path Destination path relative to the archive | 126 | * @param dest_path Destination path relative to the archive |
| 127 | * @return Result of the operation | 127 | * @return Result of the operation |
| 128 | */ | 128 | */ |
| 129 | virtual ResultCode RenameFile(const Path& src_path, const Path& dest_path) const = 0; | 129 | virtual ResultCode RenameFile(const std::string& src_path, |
| 130 | const std::string& dest_path) const = 0; | ||
| 130 | 131 | ||
| 131 | /** | 132 | /** |
| 132 | * Rename a Directory specified by its path | 133 | * Rename a Directory specified by its path |