| 10207 | virtual ~ValuesInIteratorRangeGenerator() {} |
| 10208 | |
| 10209 | virtual ParamIteratorInterface<T>* Begin() const { |
| 10210 | return new Iterator(this, container_.begin()); |
| 10211 | } |
| 10212 | virtual ParamIteratorInterface<T>* End() const { |
| 10213 | return new Iterator(this, container_.end()); |
| 10214 | } |