| 2442 | class BetweenGenerator : public IGenerator<T> { |
| 2443 | public: |
| 2444 | BetweenGenerator( T from, T to ) : m_from( from ), m_to( to ){} |
| 2445 | |
| 2446 | virtual T getValue( std::size_t index ) const { |
| 2447 | return m_from+static_cast<int>( index ); |
nothing calls this directly
no outgoing calls
no test coverage detected