Change File::open to File::open_for_writing.

Not thrilled about the File API right now...
This commit is contained in:
Jared Boone 2016-04-10 15:55:01 -07:00
parent df6593ac91
commit 38ba02a68f
3 changed files with 4 additions and 4 deletions

View file

@ -32,7 +32,7 @@ class File {
public:
~File();
bool open(const std::string& file_path);
bool open_for_writing(const std::string& file_path);
bool open_for_append(const std::string& file_path);
bool close();