Back to home page

EIC code displayed by LXR

 
 

    


File indexing completed on 2025-01-18 09:28:27

0001 #ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
0002 #define BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
0003 
0004 // MS compatible compilers support #pragma once
0005 #if defined(_MSC_VER)
0006 # pragma once
0007 #endif
0008 
0009 /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8
0010 //  auto_link_archive.hpp
0011 //
0012 //  (c) Copyright Robert Ramey 2004
0013 //  Use, modification, and distribution is subject to the Boost Software
0014 //  License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
0015 //  http://www.boost.org/LICENSE_1_0.txt)
0016 
0017 //  See library home page at http://www.boost.org/libs/serialization
0018 
0019 //----------------------------------------------------------------------------//
0020 
0021 // This header implements separate compilation features as described in
0022 // http://www.boost.org/more/separate_compilation.html
0023 
0024 //  enable automatic library variant selection  ------------------------------//
0025 
0026 #include <boost/archive/detail/decl.hpp>
0027 
0028 #if !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB) \
0029 &&  !defined(BOOST_ARCHIVE_SOURCE) && !defined(BOOST_WARCHIVE_SOURCE)  \
0030 &&  !defined(BOOST_SERIALIZATION_SOURCE)
0031 
0032     // Set the name of our library, this will get undef'ed by auto_link.hpp
0033     // once it's done with it:
0034     //
0035     #define BOOST_LIB_NAME boost_serialization
0036     //
0037     // If we're importing code from a dll, then tell auto_link.hpp about it:
0038     //
0039     #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK)
0040     #  define BOOST_DYN_LINK
0041     #endif
0042     //
0043     // And include the header that does the work:
0044     //
0045     #include <boost/config/auto_link.hpp>
0046 #endif  // auto-linking disabled
0047 
0048 #endif // BOOST_ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP