stable_vector.hpp 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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. #ifndef BOOST_INTERPROCESS_CONTAINERS_STABLE_VECTOR_HPP
  11. #define BOOST_INTERPROCESS_CONTAINERS_STABLE_VECTOR_HPP
  12. #ifndef BOOST_CONFIG_HPP
  13. # include <boost/config.hpp>
  14. #endif
  15. #
  16. #if defined(BOOST_HAS_PRAGMA_ONCE)
  17. # pragma once
  18. #endif
  19. #include <boost/interprocess/detail/config_begin.hpp>
  20. #include <boost/container/stable_vector.hpp>
  21. #include <boost/interprocess/containers/containers_fwd.hpp>
  22. namespace boost {
  23. namespace interprocess {
  24. using boost::container::stable_vector;
  25. } //namespace interprocess {
  26. } //namespace boost {
  27. #include <boost/interprocess/detail/config_end.hpp>
  28. #endif // #ifndef BOOST_INTERPROCESS_CONTAINERS_STABLE_VECTOR_HPP