Imported Upstream version 1.57.0
[platform/upstream/boost.git] / boost / interprocess / containers / deque.hpp
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2008-2012. 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_DEQUE_HPP
12 #define BOOST_INTERPROCESS_CONTAINERS_DEQUE_HPP
13
14 #if defined(_MSC_VER)
15 #  pragma once
16 #endif
17
18 #include <boost/interprocess/detail/config_begin.hpp>
19 #include <boost/container/deque.hpp>
20 #include <boost/interprocess/containers/containers_fwd.hpp>
21
22 namespace boost {
23 namespace interprocess {
24
25 using boost::container::deque;
26
27 }  //namespace interprocess {
28 }  //namespace boost {
29
30 #include <boost/interprocess/detail/config_end.hpp>
31
32 #endif //   #ifndef  BOOST_INTERPROCESS_CONTAINERS_DEQUE_HPP
33