| 60 | //////////////////// |
| 61 | template<class Category, class T, class Difference, class Pointer, class Reference> |
| 62 | struct iterator |
| 63 | { |
| 64 | typedef Category iterator_category; |
| 65 | typedef T value_type; |
| 66 | typedef Difference difference_type; |
| 67 | typedef Pointer pointer; |
| 68 | typedef Reference reference; |
| 69 | }; |
| 70 | |
| 71 | //////////////////////////////////////////////////////////////////////////////// |
| 72 | // Conversion from boost::iterator traversals to std tags |
no outgoing calls
no test coverage detected