move.hpp 1010 B

1234567891011121314151617181920212223242526272829303132333435
  1. //////////////////////////////////////////////////////////////////////////////
  2. //
  3. // (C) Copyright David Abrahams, Vicente Botet 2009.
  4. // (C) Copyright Ion Gaztanaga 2009-2012.
  5. // Distributed under the Boost Software License, Version 1.0.
  6. // (See accompanying file LICENSE_1_0.txt or copy at
  7. // http://www.boost.org/LICENSE_1_0.txt)
  8. //
  9. // See http://www.boost.org/libs/move for documentation.
  10. //
  11. //////////////////////////////////////////////////////////////////////////////
  12. //! \file
  13. //! A general library header that includes
  14. //! the rest of top-level headers.
  15. #ifndef BOOST_MOVE_MOVE_HPP
  16. #define BOOST_MOVE_MOVE_HPP
  17. #ifndef BOOST_CONFIG_HPP
  18. # include <boost/config.hpp>
  19. #endif
  20. #
  21. #if defined(BOOST_HAS_PRAGMA_ONCE)
  22. # pragma once
  23. #endif
  24. #include <boost/move/detail/config_begin.hpp>
  25. #include <boost/move/utility.hpp>
  26. #include <boost/move/iterator.hpp>
  27. #include <boost/move/traits.hpp>
  28. #include <boost/move/algorithm.hpp>
  29. #include <boost/move/detail/config_end.hpp>
  30. #endif //#ifndef BOOST_MOVE_MOVE_HPP