1 ////////////////////////////////////////////////////////////////////////////// 2 // 3 // (C) Copyright Ion Gaztanaga 2009-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_CONTAINERS_FWD_HPP 12 #define BOOST_INTERPROCESS_CONTAINERS_CONTAINERS_FWD_HPP 13 14 #if !defined(BOOST_INTERPROCESS_DOXYGEN_INVOKED) 15 16 #ifndef BOOST_CONFIG_HPP 17 # include <boost/config.hpp> 18 #endif 19 # 20 #if defined(BOOST_HAS_PRAGMA_ONCE) 21 # pragma once 22 #endif 23 24 ////////////////////////////////////////////////////////////////////////////// 25 // Standard predeclarations 26 ////////////////////////////////////////////////////////////////////////////// 27 28 #include <boost/interprocess/detail/config_begin.hpp> 29 #include <boost/container/container_fwd.hpp> 30 31 namespace boost { 32 namespace interprocess { 33 34 using boost::container::ordered_range; 35 using boost::container::ordered_unique_range; 36 37 } //namespace interprocess { 38 } //namespace boost { 39 40 #include <boost/interprocess/detail/config_end.hpp> 41 42 #endif //#ifndef BOOST_INTERPROCESS_DOXYGEN_INVOKED 43 44 #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_CONTAINERS_FWD_HPP 45