| 181 | } |
| 182 | |
| 183 | std::string FileSequence::getSuffix() const |
| 184 | { |
| 185 | std::string::size_type p = m_fileName.find_last_of( '#' ); |
| 186 | assert( p != std::string::npos ); |
| 187 | return m_fileName.substr( p+1, m_fileName.size() - p - 1 ); |
| 188 | } |
| 189 | |
| 190 | void FileSequence::setSuffix( const std::string &suffix ) |
| 191 | { |
no test coverage detected