#ifndef SPROUT_FIXED_CONTAINER_POINTER_HPP #define SPROUT_FIXED_CONTAINER_POINTER_HPP #include #include #include #include namespace sprout { // // fixed_pointer // template struct fixed_pointer { public: typedef typename sprout::detail::if_c< std::is_const::value, typename sprout::fixed_container_traits::const_pointer, typename sprout::fixed_container_traits::pointer >::type type; }; } // namespace sprout #endif // #ifndef SPROUT_FIXED_CONTAINER_POINTER_HPP