| 188 | } |
| 189 | |
| 190 | void FileSequence::setSuffix( const std::string &suffix ) |
| 191 | { |
| 192 | std::string::size_type p = m_fileName.find_last_of( '#' ); |
| 193 | assert( p != std::string::npos ); |
| 194 | setFileName( m_fileName.substr( 0, p + 1 ) + suffix ); |
| 195 | } |
| 196 | |
| 197 | std::string FileSequence::fileNameForFrame( FrameList::Frame frameNumber ) const |
| 198 | { |