2014-10-04 09:05:04 +02:00
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
//
|
|
|
|
|
// (C) Copyright Ion Gaztanaga 2014-2014. 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)
|
|
|
|
|
//
|
|
|
|
|
// See http://www.boost.org/libs/container for documentation.
|
|
|
|
|
//
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
|
|
|
|
|
#define BOOST_CONTAINER_DETAIL_STD_FWD_HPP
|
|
|
|
|
|
2015-02-02 15:26:53 +01:00
|
|
|
#ifndef BOOST_CONFIG_HPP
|
|
|
|
|
# include <boost/config.hpp>
|
|
|
|
|
#endif
|
|
|
|
|
|
2015-01-10 12:50:17 +01:00
|
|
|
#if defined(BOOST_HAS_PRAGMA_ONCE)
|
2014-10-04 09:05:04 +02:00
|
|
|
# pragma once
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Standard predeclarations
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2015-09-14 22:38:26 +02:00
|
|
|
#include <boost/move/detail/std_ns_begin.hpp>
|
|
|
|
|
BOOST_MOVE_STD_NS_BEG
|
2014-10-04 09:05:04 +02:00
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
class allocator;
|
|
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
struct less;
|
|
|
|
|
|
|
|
|
|
template<class T1, class T2>
|
|
|
|
|
struct pair;
|
|
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
|
struct char_traits;
|
|
|
|
|
|
|
|
|
|
struct input_iterator_tag;
|
|
|
|
|
struct forward_iterator_tag;
|
|
|
|
|
struct bidirectional_iterator_tag;
|
|
|
|
|
struct random_access_iterator_tag;
|
|
|
|
|
|
2015-01-09 21:19:35 +01:00
|
|
|
template<class Container>
|
|
|
|
|
class insert_iterator;
|
|
|
|
|
|
2015-01-11 23:50:58 +01:00
|
|
|
struct allocator_arg_t;
|
|
|
|
|
|
2015-09-07 19:08:08 +02:00
|
|
|
struct piecewise_construct_t;
|
|
|
|
|
|
2015-09-14 22:38:26 +02:00
|
|
|
BOOST_MOVE_STD_NS_END
|
|
|
|
|
#include <boost/move/detail/std_ns_end.hpp>
|
2014-10-04 09:05:04 +02:00
|
|
|
|
|
|
|
|
#endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
|