| 123 | } |
| 124 | |
| 125 | std::string FrameRange::asString() const |
| 126 | { |
| 127 | if ( m_step != 1 ) |
| 128 | { |
| 129 | return ( boost::format( "%d-%dx%d") % m_start % m_end % m_step ).str(); |
| 130 | } |
| 131 | else if ( m_start != m_end ) |
| 132 | { |
| 133 | return ( boost::format( "%d-%d") % m_start % m_end ).str(); |
| 134 | } |
| 135 | else |
| 136 | { |
| 137 | return ( boost::format( "%d") % m_start ).str(); |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | bool FrameRange::isEqualTo( ConstFrameListPtr other ) const |
| 142 | { |
no outgoing calls
no test coverage detected