move.hpp 879 B

123456789101112131415161718192021222324252627282930313233343536
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright Ion Gaztanaga 2010-2012.
  4. // Distributed under the Boost Software License, Version 1.0.
  5. // (See accompanying file LICENSE_1_0.txt or copy at
  6. // http://www.boost.org/LICENSE_1_0.txt)
  7. //
  8. // See http://www.boost.org/libs/move for documentation.
  9. //
  10. //////////////////////////////////////////////////////////////////////////////
  11. //! \file
  12. #ifndef BOOST_INTERPROCESS_DETAIL_MOVE_HPP
  13. #define BOOST_INTERPROCESS_DETAIL_MOVE_HPP
  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. #include <boost/move/utility_core.hpp>
  22. namespace boost {
  23. namespace interprocess {
  24. using ::boost::move;
  25. using ::boost::forward;
  26. } //namespace interprocess {
  27. } //namespace boost {
  28. #endif //#ifndef BOOST_INTERPROCESS_DETAIL_MOVE_HPP