| 97 | } |
| 98 | |
| 99 | IFFFile::Chunk *IFFFile::root() |
| 100 | { |
| 101 | if ( !open() ) |
| 102 | { |
| 103 | throw Exception( ( boost::format( "Failed to load \"%s\"." ) % m_streamFileName ).str() ); |
| 104 | } |
| 105 | |
| 106 | return m_root; |
| 107 | } |
| 108 | |
| 109 | IFFFile::Tag IFFFile::Chunk::type() |
| 110 | { |