2013-08-08 18:54:33 +09:00
|
|
|
/*=============================================================================
|
|
|
|
Copyright (c) 2011-2013 Bolero MURAKAMI
|
|
|
|
https://github.com/bolero-MURAKAMI/Sprout
|
|
|
|
|
|
|
|
Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
=============================================================================*/
|
2012-03-31 16:24:13 +09:00
|
|
|
#ifndef SPROUT_CONTAINER_METAFUNCTIONS_HPP
|
|
|
|
#define SPROUT_CONTAINER_METAFUNCTIONS_HPP
|
|
|
|
|
|
|
|
#include <sprout/config.hpp>
|
|
|
|
#include <sprout/container/value_type.hpp>
|
|
|
|
#include <sprout/container/iterator.hpp>
|
|
|
|
#include <sprout/container/const_iterator.hpp>
|
|
|
|
#include <sprout/container/reference.hpp>
|
|
|
|
#include <sprout/container/const_reference.hpp>
|
|
|
|
#include <sprout/container/size_type.hpp>
|
|
|
|
#include <sprout/container/difference_type.hpp>
|
|
|
|
#include <sprout/container/pointer.hpp>
|
|
|
|
#include <sprout/container/const_pointer.hpp>
|
|
|
|
#include <sprout/container/static_size.hpp>
|
|
|
|
#include <sprout/container/copied_type.hpp>
|
|
|
|
#include <sprout/container/rebind_size.hpp>
|
2012-06-16 15:35:10 +09:00
|
|
|
#include <sprout/container/weak_rebind_size.hpp>
|
2012-03-31 16:24:13 +09:00
|
|
|
#include <sprout/container/internal.hpp>
|
2013-02-26 10:43:27 +09:00
|
|
|
#include <sprout/container/deep_internal.hpp>
|
|
|
|
#include <sprout/container/is_sub_container.hpp>
|
2012-04-04 22:23:41 +09:00
|
|
|
#include <sprout/container/indexes.hpp>
|
2012-03-31 16:24:13 +09:00
|
|
|
|
|
|
|
#endif // #ifndef SPROUT_CONTAINER_METAFUNCTIONS_HPP
|