]> git.sesse.net Git - casparcg/blob - dependencies/boost/boost/interprocess/containers/list.hpp
Manually merged pull request #222
[casparcg] / dependencies / boost / boost / interprocess / containers / list.hpp
1 //////////////////////////////////////////////////////////////////////////////
2 //
3 // (C) Copyright Ion Gaztanaga 2008-2009. 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_LIST_HPP
12 #define BOOST_INTERPROCESS_CONTAINERS_LIST_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/list.hpp>
20 #include <boost/interprocess/containers/containers_fwd.hpp>
21
22 namespace boost {
23 namespace interprocess {
24
25 using boost::container::list;
26
27 }  //namespace interprocess {
28 }  //namespace boost {
29
30 #include <boost/interprocess/detail/config_end.hpp>
31
32 #endif //   #ifndef  BOOST_INTERPROCESS_CONTAINERS_LIST_HPP
33