Attempt to represent the S^2->S^3 header reorganisation as a series of "hg rename" operations
1 #ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
2 #define BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
4 // MS compatible compilers support #pragma once
5 #if defined(_MSC_VER) && (_MSC_VER >= 1020)
9 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
10 // auto_link_archive.hpp
12 // © Copyright Robert Ramey 2004
13 // Use, modification, and distribution is subject to the Boost Software
14 // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
15 // http://www.boost.org/LICENSE_1_0.txt)
17 // See library home page at http://www.boost.org/libs/serialization
19 //----------------------------------------------------------------------------//
21 // This header implements separate compilation features as described in
22 // http://www.boost.org/more/separate_compilation.html
24 // enable automatic library variant selection ------------------------------//
26 * © Portions copyright (c) 2006-2007 Nokia Corporation. All rights reserved.
28 #include <boost/archive/detail/decl.hpp>
30 #if !defined(BOOST_ARCHIVE_SOURCE) \
31 && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB)
33 // Set the name of our library, this will get undef'ed by auto_link.hpp
34 // once it's done with it:
36 #define BOOST_LIB_NAME boost_serialization
38 // If we're importing code from a dll, then tell auto_link.hpp about it:
40 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK)
41 # define BOOST_DYN_LINK
44 // And include the header that does the work:
47 #include <boost/config/auto_link.hpp>
48 #endif // auto-linking disabled
51 #endif // ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP