Imported Upstream version 1.49.0
[platform/upstream/boost.git] / boost / interprocess / containers / pair.hpp
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2008-2011. 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/interprocess for documentation.
8 //
9 //////////////////////////////////////////////////////////////////////////////
10
11 #ifndef BOOST_INTERPROCESS_CONTAINERS_PAIR_HPP
12 #define BOOST_INTERPROCESS_CONTAINERS_PAIR_HPP
13
14 #if (defined _MSC_VER) && (_MSC_VER >= 1200)
15 #  pragma once
16 #endif
17
18 #include <boost/interprocess/detail/config_begin.hpp>
19 #include <boost/container/detail/pair.hpp>
20 #include <boost/interprocess/containers/containers_fwd.hpp>
21
22 namespace boost {
23 namespace interprocess {
24
25 using boost::container::container_detail::pair;
26 using boost::container::container_detail::piecewise_construct;
27
28 }  //namespace interprocess {
29 }  //namespace boost {
30
31 #include <boost/interprocess/detail/config_end.hpp>
32
33 #endif //   #ifndef  BOOST_INTERPROCESS_CONTAINERS_PAIR_HPP
34