From 73c5cc279f6252afcefd30b40d67b7bbb5b540de Mon Sep 17 00:00:00 2001 From: Egor Tensin Date: Fri, 16 Oct 2020 23:45:36 +0300 Subject: File: refactoring --- src/file.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/file.cpp') diff --git a/src/file.cpp b/src/file.cpp index a299d70..c6a4ff4 100644 --- a/src/file.cpp +++ b/src/file.cpp @@ -71,19 +71,19 @@ Handle open_file(const std::wstring& path, const CreateFileParams& params) { } // namespace -Handle File::open_for_reading(const std::string& path) { +Handle File::open_r(const std::string& path) { return open_file(to_system_path(path), CreateFileParams::read()); } -Handle File::open_for_reading(const CanonicalPath& path) { +Handle File::open_r(const CanonicalPath& path) { return open_file(to_system_path(path), CreateFileParams::read()); } -Handle File::open_for_writing(const std::string& path) { +Handle File::open_w(const std::string& path) { return open_file(to_system_path(path), CreateFileParams::write()); } -Handle File::open_for_writing(const CanonicalPath& path) { +Handle File::open_w(const CanonicalPath& path) { return open_file(to_system_path(path), CreateFileParams::write()); } -- cgit v1.2.3