| 10210 | return new Iterator(this, container_.begin()); |
| 10211 | } |
| 10212 | virtual ParamIteratorInterface<T>* End() const { |
| 10213 | return new Iterator(this, container_.end()); |
| 10214 | } |
| 10215 | |
| 10216 | private: |
| 10217 | typedef typename ::std::vector<T> ContainerType; |