| 132 | } |
| 133 | |
| 134 | unsigned FileSequence::getPadding() const |
| 135 | { |
| 136 | unsigned count = 0; |
| 137 | |
| 138 | for ( std::string::const_iterator it = m_fileName.begin(); it != m_fileName.end(); ++it ) |
| 139 | { |
| 140 | if ( *it == '#' ) |
| 141 | { |
| 142 | ++count; |
| 143 | } |
| 144 | } |
| 145 | return count; |
| 146 | } |
| 147 | |
| 148 | void FileSequence::setPadding( unsigned padding ) |
| 149 | { |
no test coverage detected