| 10275 | return new Iterator(this, container_.begin()); |
| 10276 | } |
| 10277 | virtual ParamIteratorInterface<T>* End() const { |
| 10278 | return new Iterator(this, container_.end()); |
| 10279 | } |
| 10280 | |
| 10281 | private: |
| 10282 | typedef typename ::std::vector<T> ContainerType; |