|
||||
File indexing completed on 2025-01-18 09:28:27
0001 #ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP 0002 #define BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_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_warchive.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_WARCHIVE_SOURCE) \ 0029 && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB) 0030 0031 // Set the name of our library, this will get undef'ed by auto_link.hpp 0032 // once it's done with it: 0033 // 0034 #define BOOST_LIB_NAME boost_wserialization 0035 // 0036 // If we're importing code from a dll, then tell auto_link.hpp about it: 0037 // 0038 #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK) 0039 # define BOOST_DYN_LINK 0040 #endif 0041 // 0042 // And include the header that does the work: 0043 // 0044 #include <boost/config/auto_link.hpp> 0045 #endif // auto-linking disabled 0046 0047 #endif // ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |