IOFile: Make class variables private

Internals shouldn't be directly exposed.
This commit is contained in:
Lioncash 2017-01-04 17:48:44 -05:00
parent c21dad9e83
commit c541e1099e

View file

@ -230,6 +230,7 @@ public:
std::clearerr(m_file);
}
private:
std::FILE* m_file;
bool m_good;
};