| 10272 | virtual ~ValuesInIteratorRangeGenerator() {} |
| 10273 | |
| 10274 | virtual ParamIteratorInterface<T>* Begin() const { |
| 10275 | return new Iterator(this, container_.begin()); |
| 10276 | } |
| 10277 | virtual ParamIteratorInterface<T>* End() const { |
| 10278 | return new Iterator(this, container_.end()); |
| 10279 | } |