| 35 | } |
| 36 | |
| 37 | void FileReader::Initialize() |
| 38 | { |
| 39 | if (m_initialized) |
| 40 | return; |
| 41 | |
| 42 | m_initialized = true; |
| 43 | if (m_ifstream.is_open()) |
| 44 | { |
| 45 | ReadUntilEof(); |
| 46 | } |
| 47 | } |
| 48 | |
| 49 | bool FileReader::AtEnd() const |
| 50 | { |
nothing calls this directly
no outgoing calls
no test coverage detected