| 114 | } |
| 115 | |
| 116 | void FrameRange::asList( std::vector<Frame> &frames ) const |
| 117 | { |
| 118 | frames.clear(); |
| 119 | for ( Frame f = m_start; f <= m_end; f += m_step ) |
| 120 | { |
| 121 | frames.push_back( f ); |
| 122 | } |
| 123 | } |
| 124 | |
| 125 | std::string FrameRange::asString() const |
| 126 | { |
no test coverage detected