| 166 | } |
| 167 | |
| 168 | std::string FileSequence::getPrefix() const |
| 169 | { |
| 170 | std::string::size_type p = m_fileName.find_first_of( '#' ); |
| 171 | assert( p != std::string::npos ); |
| 172 | |
| 173 | return m_fileName.substr( 0, p ); |
| 174 | } |
| 175 | |
| 176 | void FileSequence::setPrefix( const std::string &prefix ) |
| 177 | { |
no outgoing calls
no test coverage detected