409 } |
409 } |
410 |
410 |
411 // ============================================================================= |
411 // ============================================================================= |
412 // ----------------------------------------------------------------------------- |
412 // ----------------------------------------------------------------------------- |
413 bool File::atEnd() const |
413 bool File::atEnd() const |
414 { if (!m_textstream) |
414 { assert (m_textstream != null); |
415 fatal ("cannot use atEnd on a null file"); |
|
416 |
|
417 return m_textstream->atEnd(); |
415 return m_textstream->atEnd(); |
418 } |
416 } |
419 |
417 |
420 // ============================================================================= |
418 // ============================================================================= |
421 // ----------------------------------------------------------------------------- |
419 // ----------------------------------------------------------------------------- |