1//////////////////////////////////////////////////////////////////////////////
2//
3// (C) Copyright Ion Gaztanaga 2014-2014. Distributed under the Boost
4// Software License, Version 1.0. (See accompanying file
5// LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6//
7// See http://www.boost.org/libs/container for documentation.
8//
9//////////////////////////////////////////////////////////////////////////////
10
11#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
12#define BOOST_CONTAINER_DETAIL_STD_FWD_HPP
13
14#ifndef BOOST_CONFIG_HPP
15# include <boost/config.hpp>
16#endif
17
18#if defined(BOOST_HAS_PRAGMA_ONCE)
19# pragma once
20#endif
21
22//////////////////////////////////////////////////////////////////////////////
23// Standard predeclarations
24//////////////////////////////////////////////////////////////////////////////
25
26#include <boost/move/detail/std_ns_begin.hpp>
27BOOST_MOVE_STD_NS_BEG
28
29template<class T>
30class allocator;
31
32template<class T>
33struct less;
34
35template<class T1, class T2>
36struct pair;
37
38template<class T>
39struct char_traits;
40
41struct input_iterator_tag;
42struct forward_iterator_tag;
43struct bidirectional_iterator_tag;
44struct random_access_iterator_tag;
45
46template<class Container>
47class insert_iterator;
48
49struct allocator_arg_t;
50
51struct piecewise_construct_t;
52
53BOOST_MOVE_STD_NS_END
54#include <boost/move/detail/std_ns_end.hpp>
55
56#endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP
57