]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/boost/container/detail/std_fwd.hpp
import new upstream nautilus stable release 14.2.8
[ceph.git] / ceph / src / boost / boost / container / detail / std_fwd.hpp
CommitLineData
7c673cae
FG
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
92f5a8d4
TL
35template<class T>
36struct equal_to;
37
7c673cae
FG
38template<class T1, class T2>
39struct pair;
40
41template<class T>
42struct char_traits;
43
44struct input_iterator_tag;
45struct forward_iterator_tag;
46struct bidirectional_iterator_tag;
47struct random_access_iterator_tag;
48
49template<class Container>
50class insert_iterator;
51
52struct allocator_arg_t;
53
54struct piecewise_construct_t;
55
56BOOST_MOVE_STD_NS_END
57#include <boost/move/detail/std_ns_end.hpp>
58
59#endif //#ifndef BOOST_CONTAINER_DETAIL_STD_FWD_HPP