| 127 | } |
| 128 | |
| 129 | IFFFile::Chunk::ChunkIterator IFFFile::Chunk::childrenBegin() |
| 130 | { |
| 131 | if ( isGroup() && !m_children.size() ) |
| 132 | { |
| 133 | ls(); |
| 134 | } |
| 135 | |
| 136 | return m_children.begin(); |
| 137 | } |
| 138 | |
| 139 | IFFFile::Chunk::ChunkIterator IFFFile::Chunk::childrenEnd() |
| 140 | { |
no test coverage detected