| 56 | } |
| 57 | |
| 58 | void BinaryFileReader::Initialize() |
| 59 | { |
| 60 | if (m_initialized) |
| 61 | { |
| 62 | return; |
| 63 | } |
| 64 | m_initialized = true; |
| 65 | |
| 66 | if (m_wifstream.is_open()) |
| 67 | { |
| 68 | ReadUntilEof(); |
| 69 | m_end = false; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | bool BinaryFileReader::AtEnd() const |
| 74 | { |
nothing calls this directly
no outgoing calls
no test coverage detected