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 
13 //! \file
14 //! A general library header that includes
15 //! the rest of top-level headers.
16 
17 #ifndef BOOST_MOVE_MOVE_HPP
18 #define BOOST_MOVE_MOVE_HPP
19 
20 #ifndef BOOST_CONFIG_HPP
21 #  include <boost/config.hpp>
22 #endif
23 #
24 #if defined(BOOST_HAS_PRAGMA_ONCE)
25 #  pragma once
26 #endif
27 
28 #include <boost/move/detail/config_begin.hpp>
29 #include <boost/move/utility.hpp>
30 #include <boost/move/iterator.hpp>
31 #include <boost/move/traits.hpp>
32 #include <boost/move/algorithm.hpp>
33 #include <boost/move/detail/config_end.hpp>
34 
35 #endif //#ifndef BOOST_MOVE_MOVE_HPP
36