comparison DEPENDENCIES/generic/include/boost/interprocess/containers/deque.hpp @ 16:2665513ce2d3

Add boost headers
author Chris Cannam
date Tue, 05 Aug 2014 11:11:38 +0100
parents
children c530137014c0
comparison
equal deleted inserted replaced
15:663ca0da4350 16:2665513ce2d3
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) && (_MSC_VER >= 1200)
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