Add File::open_for_reading().

Barf.
This commit is contained in:
Jared Boone 2016-04-10 15:56:34 -07:00
parent 38ba02a68f
commit 0a9d7ec8d8
2 changed files with 6 additions and 0 deletions

View file

@ -33,6 +33,7 @@ public:
~File();
bool open_for_writing(const std::string& file_path);
bool open_for_reading(const std::string& file_path);
bool open_for_append(const std::string& file_path);
bool close();