/* */ #ifndef _LIBCXX_ITERATOR_ #define _LIBCXX_ITERATOR_ namespace std { struct input_iterator_tag {}; struct output_iterator_tag {}; struct forward_iterator_tag {}; struct bidirectional_iterator_tag {}; struct random_access_iterator_tag {}; template class iterator { public: typedef T value_type; typedef Distance difference_type; typedef Pointer pointer_type; typedef Reference reference; typedef Category iterator_category; }; template class iterator_traits; template class iterator_traits; template class iterator_traits; }; // namespace std #endif // vim: ft=cpp