/* Hapy is a public domain software. See Hapy README file for the details. */ #ifndef HAPY_XSTL_ITERATOR__H #define HAPY_XSTL_ITERATOR__H #include #ifdef HAPY_HAVE_ITERATOR # include #endif namespace Hapy { #ifdef HAPY_HAVE_STD_ITERATOR_TYPE template struct std_bidirectional_iterator: public std::iterator { }; #else template struct std_bidirectional_iterator: public std::bidirectional_iterator { }; #endif } // namespace #endif