]> git.proxmox.com Git - ceph.git/blob - ceph/src/boost/libs/interprocess/include/boost/interprocess/containers/deque.hpp
add subtree-ish sources for 12.0.3
[ceph.git] / ceph / src / boost / libs / interprocess / include / 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 #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 #include <boost/interprocess/detail/config_begin.hpp>
23 #include <boost/container/deque.hpp>
24 #include <boost/interprocess/containers/containers_fwd.hpp>
25
26 namespace boost {
27 namespace interprocess {
28
29 using boost::container::deque;
30
31 } //namespace interprocess {
32 } //namespace boost {
33
34 #include <boost/interprocess/detail/config_end.hpp>
35
36 #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_DEQUE_HPP
37