| 2463 | ValuesGenerator(){} |
| 2464 | |
| 2465 | void add( T value ) { |
| 2466 | m_values.push_back( value ); |
| 2467 | } |
| 2468 | |
| 2469 | virtual T getValue( std::size_t index ) const { |
| 2470 | return m_values[index]; |
nothing calls this directly
no outgoing calls
no test coverage detected