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