2012-03-31 07:24:13 +00:00
|
|
|
#ifndef SPROUT_CONTAINER_INTERNAL_HPP
|
|
|
|
#define SPROUT_CONTAINER_INTERNAL_HPP
|
|
|
|
|
|
|
|
#include <type_traits>
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/sub_container_traits.hpp>
|
|
|
|
|
|
|
|
namespace sprout {
|
|
|
|
namespace containers {
|
|
|
|
//
|
|
|
|
// internal
|
|
|
|
//
|
|
|
|
template<typename Container>
|
2013-03-26 17:02:16 +00:00
|
|
|
struct internal
|
|
|
|
: public sprout::sub_container_traits<
|
2012-03-31 07:24:13 +00:00
|
|
|
typename std::remove_reference<Container>::type
|
2013-03-26 17:02:16 +00:00
|
|
|
>::template internal<Container>
|
|
|
|
{};
|
2012-03-31 07:24:13 +00:00
|
|
|
} // namespace containers
|
|
|
|
} // namespace sprout
|
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_INTERNAL_HPP
|