Chris@16: #ifndef BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP Chris@16: #define BOOST_ARCHIVE_DETAIL_AUTO_LINK_WARCHIVE_HPP Chris@16: Chris@16: // MS compatible compilers support #pragma once Chris@101: #if defined(_MSC_VER) Chris@16: # pragma once Chris@16: #endif Chris@16: Chris@16: /////////1/////////2/////////3/////////4/////////5/////////6/////////7/////////8 Chris@16: // auto_link_warchive.hpp Chris@16: // Chris@16: // (c) Copyright Robert Ramey 2004 Chris@16: // Use, modification, and distribution is subject to the Boost Software Chris@16: // License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at Chris@16: // http://www.boost.org/LICENSE_1_0.txt) Chris@16: Chris@16: // See library home page at http://www.boost.org/libs/serialization Chris@16: Chris@16: //----------------------------------------------------------------------------// Chris@16: Chris@16: // This header implements separate compilation features as described in Chris@16: // http://www.boost.org/more/separate_compilation.html Chris@16: Chris@16: // enable automatic library variant selection ------------------------------// Chris@16: Chris@16: #include Chris@16: Chris@16: #if !defined(BOOST_WARCHIVE_SOURCE) \ Chris@16: && !defined(BOOST_ALL_NO_LIB) && !defined(BOOST_SERIALIZATION_NO_LIB) Chris@16: Chris@16: // Set the name of our library, this will get undef'ed by auto_link.hpp Chris@16: // once it's done with it: Chris@16: // Chris@16: #define BOOST_LIB_NAME boost_wserialization Chris@16: // Chris@16: // If we're importing code from a dll, then tell auto_link.hpp about it: Chris@16: // Chris@16: #if defined(BOOST_ALL_DYN_LINK) || defined(BOOST_SERIALIZATION_DYN_LINK) Chris@16: # define BOOST_DYN_LINK Chris@16: #endif Chris@16: // Chris@16: // And include the header that does the work: Chris@16: // Chris@16: #include Chris@16: #endif // auto-linking disabled Chris@16: Chris@16: #endif // ARCHIVE_DETAIL_AUTO_LINK_ARCHIVE_HPP