#ifndef SPROUT_CONTAINER_ITERATOR_HPP #define SPROUT_CONTAINER_ITERATOR_HPP #include #include namespace sprout { namespace containers { // // iterator // template struct iterator { public: typedef typename sprout::container_traits::iterator type; }; } // namespace containers } // namespace sprout #endif // #ifndef SPROUT_CONTAINER_ITERATOR_HPP